diff --git a/src/config/modelProviders/ai360.ts b/src/config/modelProviders/ai360.ts index bb8722c2dced..22e30857791d 100644 --- a/src/config/modelProviders/ai360.ts +++ b/src/config/modelProviders/ai360.ts @@ -4,13 +4,61 @@ import { ModelProviderCard } from '@/types/llm'; const Ai360: ModelProviderCard = { chatModels: [ { - displayName: '360GPT Pro', + displayName: '360GPT2 Pro', enabled: true, functionCall: false, + id: '360gpt2-pro', + maxOutput: 7000, + tokens: 8192, + }, + { + displayName: '360GPT Pro', + enabled: false, + functionCall: false, id: '360gpt-pro', maxOutput: 7000, tokens: 8192, }, + { + displayName: '360GPT Pro Perf', + enabled: false, + functionCall: false, + id: '360gpt-pro-perf', + maxOutput: 7000, + tokens: 8192, + }, + { + displayName: '360GPT Pro sc202401v3', + enabled: false, + functionCall: false, + id: '360gpt-pro-sc202401v3', + maxOutput: 2048, + tokens: 4096, + }, + { + displayName: '360GPT Pro sc202401v2', + enabled: false, + functionCall: false, + id: '360gpt-pro-sc202401v2', + maxOutput: 2048, + tokens: 4096, + }, + { + displayName: '360GPT Pro sc202401v1', + enabled: false, + functionCall: false, + id: '360gpt-pro-sc202401v1', + maxOutput: 2048, + tokens: 4096, + }, + { + displayName: '360GPT Pro v2.0.3', + enabled: false, + functionCall: false, + id: '360gpt-pro-v2.0.3', + maxOutput: 2048, + tokens: 4096, + }, { displayName: '360GPT Turbo', enabled: true, @@ -27,6 +75,38 @@ const Ai360: ModelProviderCard = { maxOutput: 2048, tokens: 8192, }, + { + displayName: '360GPT Turbo 32K Responsibility 240530', + enabled: false, + functionCall: false, + id: '360gpt-turbo-32k-responsibility-240530', + maxOutput: 32_000, + tokens: 32_000, + }, + { + displayName: '360GPT Turbo 32K Responsibility 240516', + enabled: false, + functionCall: false, + id: '360gpt-turbo-32k-responsibility-240516', + maxOutput: 32_000, + tokens: 32_000, + }, + { + displayName: '360GPT_S1_QIYUAN', + enabled: false, + functionCall: false, + id: '360GPT_S1_QIYUAN', + maxOutput: 2048, + tokens: 4096, + }, + { + displayName: '360GPT_S2_V9', + enabled: false, + functionCall: false, + id: '360GPT_S2_V9', + maxOutput: 7000, + tokens: 8192, + }, ], checkModel: '360gpt-turbo', disableBrowserRequest: true,