Skip to content

Commit

Permalink
💄 style: Add Gemini 1.5 Pro Exp model (lobehub#3384)
Browse files Browse the repository at this point in the history
  • Loading branch information
sxjeru authored Aug 2, 2024
1 parent 9535ff8 commit 0de8b7b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/config/modelProviders/google.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Google: ModelProviderCard = {
vision: true,
},
{
description: 'Mid-size multimodal model that supports up to 1 million tokens',
description: 'Mid-size multimodal model that supports up to 2 million tokens',
displayName: 'Gemini 1.5 Pro',
enabled: true,
functionCall: true,
Expand All @@ -34,14 +34,24 @@ const Google: ModelProviderCard = {
vision: true,
},
{
description: 'Mid-size multimodal model that supports up to 1 million tokens',
description: 'Mid-size multimodal model that supports up to 2 million tokens',
displayName: 'Gemini 1.5 Pro 001',
functionCall: true,
id: 'gemini-1.5-pro-001',
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',
enabled: true,
functionCall: true,
id: 'gemini-1.5-pro-exp-0801',
maxOutput: 8192,
tokens: 2_097_152 + 8192,
vision: true,
},
{
description:
'The best model for scaling across a wide range of tasks. This is the latest model.',
Expand Down

0 comments on commit 0de8b7b

Please sign in to comment.