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: Add Gemini 1.5 Pro Exp model #3384

Merged
merged 1 commit into from
Aug 2, 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
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
Loading