Skip to content

Commit

Permalink
💄 style: Update Qwen and Gemini models info (lobehub#3693)
Browse files Browse the repository at this point in the history
* Update qwen.ts

* Update google.ts

* Update google.ts
  • Loading branch information
LovelyGuYiMeng authored Aug 30, 2024
1 parent e3f898c commit ba01641
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
28 changes: 14 additions & 14 deletions src/config/modelProviders/google.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ const Google: ModelProviderCard = {
},
{
description: 'Fast and versatile multimodal model for scaling across diverse tasks',
displayName: 'Gemini 1.5 Flash 001',
displayName: 'Gemini 1.5 Flash 0827',
enabled: true,
functionCall: true,
id: 'gemini-1.5-flash-001',
id: 'gemini-1.5-flash-exp-0827',
maxOutput: 8192,
tokens: 1_048_576 + 8192,
vision: true,
},
{
description: 'Fast and versatile multimodal model for scaling across diverse tasks',
displayName: 'Gemini 1.5 Flash Experimental 0827',
enabled: true,
displayName: 'Gemini 1.5 Flash 8B 0827',
functionCall: true,
id: 'gemini-1.5-flash-exp-0827',
id: 'gemini-1.5-flash-8b-exp-0827',
maxOutput: 8192,
tokens: 1_048_576 + 8192,
vision: true,
},
{
description: 'Fast and versatile multimodal model for scaling across diverse tasks',
displayName: 'Gemini 1.5 Flash 8B Experimental 0827',
displayName: 'Gemini 1.5 Flash 001',
functionCall: true,
id: 'gemini-1.5-flash-8b-exp-0827',
id: 'gemini-1.5-flash-001',
maxOutput: 8192,
tokens: 1_048_576 + 8192,
vision: true,
Expand All @@ -54,16 +54,17 @@ const Google: ModelProviderCard = {
},
{
description: 'Mid-size multimodal model that supports up to 2 million tokens',
displayName: 'Gemini 1.5 Pro 001',
displayName: 'Gemini 1.5 Pro 0827',
enabled: true,
functionCall: true,
id: 'gemini-1.5-pro-001',
id: 'gemini-1.5-pro-exp-0827',
maxOutput: 8192,
tokens: 2_097_152 + 8192,
vision: true,
},
{
description: 'Mid-size multimodal model that supports up to 2 million tokens',
displayName: 'Gemini 1.5 Pro Experimental 0801',
displayName: 'Gemini 1.5 Pro 0801',
functionCall: true,
id: 'gemini-1.5-pro-exp-0801',
maxOutput: 8192,
Expand All @@ -72,10 +73,9 @@ const Google: ModelProviderCard = {
},
{
description: 'Mid-size multimodal model that supports up to 2 million tokens',
displayName: 'Gemini 1.5 Pro Experimental 0827',
enabled: true,
displayName: 'Gemini 1.5 Pro 001',
functionCall: true,
id: 'gemini-1.5-pro-exp-0827',
id: 'gemini-1.5-pro-001',
maxOutput: 8192,
tokens: 2_097_152 + 8192,
vision: true,
Expand Down Expand Up @@ -106,7 +106,7 @@ const Google: ModelProviderCard = {
tokens: 30_720 + 2048,
},
],
checkModel: 'gemini-1.5-flash',
checkModel: 'gemini-1.5-flash-latest',
id: 'google',
name: 'Google',
proxyUrl: {
Expand Down
1 change: 0 additions & 1 deletion src/config/modelProviders/qwen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const Qwen: ModelProviderCard = {
description: '通义千问超大规模语言模型,支持长文本上下文,以及基于长文档、多文档等多个场景的对话功能。',
displayName: 'Qwen Long',
enabled: true,
functionCall: true,
id: 'qwen-long',
tokens: 1_000_000,
},
Expand Down

0 comments on commit ba01641

Please sign in to comment.