Skip to content

Commit b5a77e3

Browse files
Fixes maximum token limit for Gemini provider 2.5 pro exp (#2737)
Corrects the maximum token limit for the "gemini-2.5-pro-exp-03-25" model, ensuring accurate configuration.
1 parent fffebf1 commit b5a77e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ export const geminiModels = {
649649
outputPrice: 0.6,
650650
},
651651
"gemini-2.5-pro-exp-03-25": {
652-
maxTokens: 65_536,
652+
maxTokens: 65_535,
653653
contextWindow: 1_048_576,
654654
supportsImages: true,
655655
supportsPromptCache: false,

0 commit comments

Comments
 (0)