Skip to content

Commit

Permalink
💄 style: update 360GPT model (360GPT2 Pro) (#3339)
Browse files Browse the repository at this point in the history
* 💄 style: update 360GPT model (360GPT2 Pro)

* 💄 style: add more 360GPT models

* 💄 style: disable 360gpt-pro as default
  • Loading branch information
hezhijie0327 committed Jul 29, 2024
1 parent ebfd3cf commit c8ed85e
Showing 1 changed file with 81 additions and 1 deletion.
82 changes: 81 additions & 1 deletion src/config/modelProviders/ai360.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit c8ed85e

Please sign in to comment.