mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-12 23:01:41 +00:00
feat: Update model pricing and context window configurations (#12910)
- Adjusted input and output cost per token for existing models. - Added new model configuration for "openrouter/qwen/qwen3-coder" with specified token limits and costs.
This commit is contained in:
parent
6cfaf674e4
commit
3ca65b3064
2 changed files with 27 additions and 6 deletions
|
|
@ -11117,12 +11117,22 @@
|
|||
"max_tokens": 8192,
|
||||
"max_input_tokens": 8192,
|
||||
"max_output_tokens": 2048,
|
||||
"input_cost_per_token": 0.00021,
|
||||
"output_cost_per_token": 0.00063,
|
||||
"input_cost_per_token": 2.1e-04,
|
||||
"output_cost_per_token": 6.3e-04,
|
||||
"litellm_provider": "openrouter",
|
||||
"mode": "chat",
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
},
|
||||
"openrouter/qwen/qwen3-coder": {
|
||||
"max_tokens": 1000000,
|
||||
"max_input_tokens": 1000000,
|
||||
"max_output_tokens": 1000000,
|
||||
"input_cost_per_token": 1e-06,
|
||||
"output_cost_per_token": 5e-06,
|
||||
"litellm_provider": "openrouter",
|
||||
"mode": "chat",
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
"openrouter/switchpoint/router": {
|
||||
"max_tokens": 131072,
|
||||
"max_input_tokens": 131072,
|
||||
|
|
|
|||
|
|
@ -11117,12 +11117,23 @@
|
|||
"max_tokens": 8192,
|
||||
"max_input_tokens": 8192,
|
||||
"max_output_tokens": 2048,
|
||||
"input_cost_per_token": 0.00021,
|
||||
"output_cost_per_token": 0.00063,
|
||||
"input_cost_per_token": 2.1e-04,
|
||||
"output_cost_per_token": 6.3e-04,
|
||||
"litellm_provider": "openrouter",
|
||||
"mode": "chat",
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
},
|
||||
"openrouter/qwen/qwen3-coder": {
|
||||
"max_tokens": 1000000,
|
||||
"max_input_tokens": 1000000,
|
||||
"max_output_tokens": 1000000,
|
||||
"input_cost_per_token": 1e-06,
|
||||
"output_cost_per_token": 5e-06,
|
||||
"litellm_provider": "openrouter",
|
||||
"source": "https://openrouter.ai/qwen/qwen3-coder",
|
||||
"mode": "chat",
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
"openrouter/switchpoint/router": {
|
||||
"max_tokens": 131072,
|
||||
"max_input_tokens": 131072,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue