diff --git a/web/src/constants/channel.constants.js b/web/src/constants/channel.constants.js index 6498f033..86c41c31 100644 --- a/web/src/constants/channel.constants.js +++ b/web/src/constants/channel.constants.js @@ -11,3 +11,8 @@ export const CHANNEL_OPTIONS = [ { key: 10, text: 'AI Proxy', value: 10, color: 'purple' }, { key: 12, text: 'API2GPT', value: 12, color: 'blue' } ]; +export const MODEL_MAPPING_EXAMPLE = { + "gpt-3.5-turbo-0301": "gpt-3.5-turbo", + "gpt-4-0314": "gpt-4", + "gpt-4-32k-0314": "gpt-4-32k" +}; \ No newline at end of file diff --git a/web/src/pages/Channel/EditChannel.js b/web/src/pages/Channel/EditChannel.js index ec04234d..2740ca5f 100644 --- a/web/src/pages/Channel/EditChannel.js +++ b/web/src/pages/Channel/EditChannel.js @@ -2,7 +2,7 @@ import React, { useEffect, useState } from 'react'; import { Button, Form, Header, Message, Segment } from 'semantic-ui-react'; import { useParams } from 'react-router-dom'; import { API, showError, showInfo, showSuccess, verifyJSON } from '../../helpers'; -import { CHANNEL_OPTIONS } from '../../constants'; +import { CHANNEL_OPTIONS, MODEL_MAPPING_EXAMPLE } from '../../constants'; const EditChannel = () => { const params = useParams(); @@ -257,11 +257,11 @@ const EditChannel = () => {