mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-05 08:07:05 +00:00
Update gemini-2.5-pro-exp-03-25 max_tokens to 65,535 (#10548)
Fixes:
Error generating conversation title: litellm.BadRequestError: VertexAIException BadRequestError - {
"error": {
"code": 400,
"message": "Unable to submit request because it has a maxOutputTokens value of 65536 but the supported range is from 1 (inclusive) to 65536 (exclusive). Update the value and try again.",
"status": "INVALID_ARGUMENT"
}
}
This commit is contained in:
parent
9ae239b3e1
commit
57c5e7ea3f
1 changed files with 2 additions and 2 deletions
|
|
@ -5436,9 +5436,9 @@
|
|||
"supports_tool_choice": true
|
||||
},
|
||||
"gemini-2.5-pro-exp-03-25": {
|
||||
"max_tokens": 65536,
|
||||
"max_tokens": 65535,
|
||||
"max_input_tokens": 1048576,
|
||||
"max_output_tokens": 65536,
|
||||
"max_output_tokens": 65535,
|
||||
"max_images_per_prompt": 3000,
|
||||
"max_videos_per_prompt": 10,
|
||||
"max_video_length": 1,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue