Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💄 style: update 360GPT model (360GPT2 Pro) #3339

Merged
merged 3 commits into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading