Browse Source

Updated value of max tokens for gemini-2.5-pro-03-25 to correct one (#1985)

Updated value of max tokens for gemini 2.5 to correct one
Eugène P. 9 months ago
parent
commit
f071a43b26
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/shared/api.ts

+ 1 - 1
src/shared/api.ts

@@ -748,7 +748,7 @@ export type GeminiModelId = keyof typeof geminiModels
 export const geminiDefaultModelId: GeminiModelId = "gemini-2.0-flash-001"
 export const geminiModels = {
 	"gemini-2.5-pro-exp-03-25": {
-		maxTokens: 8192,
+		maxTokens: 65_536,
 		contextWindow: 1_048_576,
 		supportsImages: true,
 		supportsPromptCache: false,