Merge branch 'main' into feature/Supergateway-MCP

This commit is contained in:
Henry 2025-04-16 01:03:40 +08:00
commit d5bc39e068
5 changed files with 35 additions and 5 deletions

View File

@ -235,6 +235,10 @@
{
"name": "azureChatOpenAI",
"models": [
{
"label": "gpt-4.1",
"name": "gpt-4.1"
},
{
"label": "o3-mini",
"name": "o3-mini"
@ -619,6 +623,18 @@
{
"name": "chatOpenAI",
"models": [
{
"label": "gpt-4.1",
"name": "gpt-4.1"
},
{
"label": "gpt-4.1-mini",
"name": "gpt-4.1-mini"
},
{
"label": "gpt-4.1-nano",
"name": "gpt-4.1-nano"
},
{
"label": "gpt-4.5-preview",
"name": "gpt-4.5-preview"

View File

@ -248,7 +248,9 @@ export const FlowListTable = ({ data, images, isLoading, filterFunction, updateF
</Box>
)}
</StyledTableCell>
<StyledTableCell key='3'>{moment(row.updatedDate).format('MMMM Do, YYYY')}</StyledTableCell>
<StyledTableCell key='3'>
{moment(row.updatedDate).format('MMMM Do, YYYY HH:mm:ss')}
</StyledTableCell>
<StyledTableCell key='4'>
<Stack
direction={{ xs: 'column', sm: 'row' }}

View File

@ -46,6 +46,18 @@ import { HIDE_CANVAS_DIALOG, SHOW_CANVAS_DIALOG } from '@/store/actions'
import { maxScroll } from '@/store/constant'
const assistantAvailableModels = [
{
label: 'gpt-4.1',
name: 'gpt-4.1'
},
{
label: 'gpt-4.1-mini',
name: 'gpt-4.1-mini'
},
{
label: 'gpt-4.1-nano',
name: 'gpt-4.1-nano'
},
{
label: 'gpt-4.5-preview',
name: 'gpt-4.5-preview'

View File

@ -352,10 +352,10 @@ const Credentials = () => {
</Box>
</StyledTableCell>
<StyledTableCell>
{moment(credential.updatedDate).format('MMMM Do, YYYY')}
{moment(credential.updatedDate).format('MMMM Do, YYYY HH:mm:ss')}
</StyledTableCell>
<StyledTableCell>
{moment(credential.createdDate).format('MMMM Do, YYYY')}
{moment(credential.createdDate).format('MMMM Do, YYYY HH:mm:ss')}
</StyledTableCell>
<StyledTableCell>
<IconButton title='Edit' color='primary' onClick={() => edit(credential)}>

View File

@ -340,10 +340,10 @@ const Variables = () => {
/>
</StyledTableCell>
<StyledTableCell>
{moment(variable.updatedDate).format('MMMM Do, YYYY')}
{moment(variable.updatedDate).format('MMMM Do, YYYY HH:mm:ss')}
</StyledTableCell>
<StyledTableCell>
{moment(variable.createdDate).format('MMMM Do, YYYY')}
{moment(variable.createdDate).format('MMMM Do, YYYY HH:mm:ss')}
</StyledTableCell>
<StyledTableCell>
<IconButton title='Edit' color='primary' onClick={() => edit(variable)}>