Просмотр исходного кода

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.
Nico Bihan 8 месяцев назад
Родитель
Сommit
b5a77e34a4
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/shared/api.ts

+ 1 - 1
src/shared/api.ts

@@ -649,7 +649,7 @@ export const geminiModels = {
 		outputPrice: 0.6,
 	},
 	"gemini-2.5-pro-exp-03-25": {
-		maxTokens: 65_536,
+		maxTokens: 65_535,
 		contextWindow: 1_048_576,
 		supportsImages: true,
 		supportsPromptCache: false,