Merge branch 'main' into feature/Supergateway-MCP
This commit is contained in:
commit
d5bc39e068
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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' }}
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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)}>
|
||||
|
|
|
|||
|
|
@ -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)}>
|
||||
|
|
|
|||
Loading…
Reference in New Issue