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 Qwen models #3626

Merged
merged 2 commits into from
Aug 27, 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
38 changes: 36 additions & 2 deletions src/config/modelProviders/qwen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const Qwen: ModelProviderCard = {
displayName: 'Qwen VL Plus',
enabled: true,
id: 'qwen-vl-plus',
tokens: 6144,
tokens: 8192,
vision: true,
},
{
Expand All @@ -69,7 +69,41 @@ const Qwen: ModelProviderCard = {
displayName: 'Qwen VL Max',
enabled: true,
id: 'qwen-vl-max',
tokens: 6144,
tokens: 8192,
vision: true,
},
{
description:
'以 Qwen-7B 语言模型初始化,添加图像模型,图像输入分辨率为448的预训练模型。',
displayName: 'Qwen VL',
enabled: true,
id: 'qwen-vl-v1',
tokens: 8192,
vision: true,
},
{
description:
'通义千问VL支持灵活的交互方式,包括多图、多轮问答、创作等能力的模型。',
displayName: 'Qwen VL Chat',
enabled: true,
id: 'qwen-vl-chat-v1',
tokens: 8192,
vision: true,
},
{
description: 'Qwen2-Math 模型具有强大的数学解题能力',
displayName: 'Qwen2 Math 72B',
enabled: true,
id: 'qwen2-math-72b-instruct',
tokens: 4096,
},
{
description:
'抢先体验即将升级的 qwen-vl-max 大模型。',
displayName: 'Qwen VL Max 0809',
enabled: true,
id: 'qwen-vl-max-0809',
tokens: 32_768,
vision: true,
},
],
Expand Down
Loading