We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc4f30 commit db7ab1dCopy full SHA for db7ab1d
src/shared/api.ts
@@ -745,8 +745,16 @@ export const openAiModelInfoSaneDefaults: ModelInfo = {
745
// Gemini
746
// https://ai.google.dev/gemini-api/docs/models/gemini
747
export type GeminiModelId = keyof typeof geminiModels
748
-export const geminiDefaultModelId: GeminiModelId = "gemini-2.0-flash-001"
+export const geminiDefaultModelId: GeminiModelId = "gemini-2.5-pro-exp-03-25"
749
export const geminiModels = {
750
+ "gemini-2.5-pro-exp-03-25": {
751
+ maxTokens: 8192,
752
+ contextWindow: 1_048_576,
753
+ supportsImages: true,
754
+ supportsPromptCache: false,
755
+ inputPrice: 0,
756
+ outputPrice: 0,
757
+ },
758
"gemini-2.0-flash-001": {
759
maxTokens: 8192,
760
contextWindow: 1_048_576,
0 commit comments