Skip to content

Commit

Permalink
💄 style: Update Gemini models (#3653)
Browse files Browse the repository at this point in the history
  • Loading branch information
sxjeru authored Aug 28, 2024
1 parent cef1733 commit b61ca4c
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion src/config/modelProviders/google.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,25 @@ const Google: ModelProviderCard = {
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,
functionCall: true,
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 8B Experimental 0827',
functionCall: true,
id: 'gemini-1.5-flash-8b-exp-0827',
maxOutput: 8192,
tokens: 1_048_576 + 8192,
vision: true,
},
{
description: 'Mid-size multimodal model that supports up to 2 million tokens',
displayName: 'Gemini 1.5 Pro',
Expand All @@ -45,13 +64,22 @@ const Google: ModelProviderCard = {
{
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: 'Mid-size multimodal model that supports up to 2 million tokens',
displayName: 'Gemini 1.5 Pro Experimental 0827',
enabled: true,
functionCall: true,
id: 'gemini-1.5-pro-exp-0827',
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 b61ca4c

Please sign in to comment.