Merge branch 'main' into feature/Supergateway-MCP
This commit is contained in:
commit
d5bc39e068
|
|
@ -235,6 +235,10 @@
|
||||||
{
|
{
|
||||||
"name": "azureChatOpenAI",
|
"name": "azureChatOpenAI",
|
||||||
"models": [
|
"models": [
|
||||||
|
{
|
||||||
|
"label": "gpt-4.1",
|
||||||
|
"name": "gpt-4.1"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "o3-mini",
|
"label": "o3-mini",
|
||||||
"name": "o3-mini"
|
"name": "o3-mini"
|
||||||
|
|
@ -619,6 +623,18 @@
|
||||||
{
|
{
|
||||||
"name": "chatOpenAI",
|
"name": "chatOpenAI",
|
||||||
"models": [
|
"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",
|
"label": "gpt-4.5-preview",
|
||||||
"name": "gpt-4.5-preview"
|
"name": "gpt-4.5-preview"
|
||||||
|
|
|
||||||
|
|
@ -248,7 +248,9 @@ export const FlowListTable = ({ data, images, isLoading, filterFunction, updateF
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
</StyledTableCell>
|
</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'>
|
<StyledTableCell key='4'>
|
||||||
<Stack
|
<Stack
|
||||||
direction={{ xs: 'column', sm: 'row' }}
|
direction={{ xs: 'column', sm: 'row' }}
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,18 @@ import { HIDE_CANVAS_DIALOG, SHOW_CANVAS_DIALOG } from '@/store/actions'
|
||||||
import { maxScroll } from '@/store/constant'
|
import { maxScroll } from '@/store/constant'
|
||||||
|
|
||||||
const assistantAvailableModels = [
|
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',
|
label: 'gpt-4.5-preview',
|
||||||
name: 'gpt-4.5-preview'
|
name: 'gpt-4.5-preview'
|
||||||
|
|
|
||||||
|
|
@ -352,10 +352,10 @@ const Credentials = () => {
|
||||||
</Box>
|
</Box>
|
||||||
</StyledTableCell>
|
</StyledTableCell>
|
||||||
<StyledTableCell>
|
<StyledTableCell>
|
||||||
{moment(credential.updatedDate).format('MMMM Do, YYYY')}
|
{moment(credential.updatedDate).format('MMMM Do, YYYY HH:mm:ss')}
|
||||||
</StyledTableCell>
|
</StyledTableCell>
|
||||||
<StyledTableCell>
|
<StyledTableCell>
|
||||||
{moment(credential.createdDate).format('MMMM Do, YYYY')}
|
{moment(credential.createdDate).format('MMMM Do, YYYY HH:mm:ss')}
|
||||||
</StyledTableCell>
|
</StyledTableCell>
|
||||||
<StyledTableCell>
|
<StyledTableCell>
|
||||||
<IconButton title='Edit' color='primary' onClick={() => edit(credential)}>
|
<IconButton title='Edit' color='primary' onClick={() => edit(credential)}>
|
||||||
|
|
|
||||||
|
|
@ -340,10 +340,10 @@ const Variables = () => {
|
||||||
/>
|
/>
|
||||||
</StyledTableCell>
|
</StyledTableCell>
|
||||||
<StyledTableCell>
|
<StyledTableCell>
|
||||||
{moment(variable.updatedDate).format('MMMM Do, YYYY')}
|
{moment(variable.updatedDate).format('MMMM Do, YYYY HH:mm:ss')}
|
||||||
</StyledTableCell>
|
</StyledTableCell>
|
||||||
<StyledTableCell>
|
<StyledTableCell>
|
||||||
{moment(variable.createdDate).format('MMMM Do, YYYY')}
|
{moment(variable.createdDate).format('MMMM Do, YYYY HH:mm:ss')}
|
||||||
</StyledTableCell>
|
</StyledTableCell>
|
||||||
<StyledTableCell>
|
<StyledTableCell>
|
||||||
<IconButton title='Edit' color='primary' onClick={() => edit(variable)}>
|
<IconButton title='Edit' color='primary' onClick={() => edit(variable)}>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue