mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
fix: correct pricing for openrouter/openai/gpt-oss-20b
Updated pricing from incorrect values to match OpenRouter's official rates: - Input: $0.18/M → $0.02/M tokens (1.8e-07 → 2e-08) - Output: $0.80/M → $0.10/M tokens (8e-07 → 1e-07)
This commit is contained in:
parent
58e6ef7d93
commit
0bc04ce129
2 changed files with 4 additions and 4 deletions
|
|
@ -23340,13 +23340,13 @@
|
|||
"supports_tool_choice": true
|
||||
},
|
||||
"openrouter/openai/gpt-oss-20b": {
|
||||
"input_cost_per_token": 1.8e-07,
|
||||
"input_cost_per_token": 2e-08,
|
||||
"litellm_provider": "openrouter",
|
||||
"max_input_tokens": 131072,
|
||||
"max_output_tokens": 32768,
|
||||
"max_tokens": 32768,
|
||||
"mode": "chat",
|
||||
"output_cost_per_token": 8e-07,
|
||||
"output_cost_per_token": 1e-07,
|
||||
"source": "https://openrouter.ai/openai/gpt-oss-20b",
|
||||
"supports_function_calling": true,
|
||||
"supports_parallel_function_calling": true,
|
||||
|
|
|
|||
|
|
@ -23340,13 +23340,13 @@
|
|||
"supports_tool_choice": true
|
||||
},
|
||||
"openrouter/openai/gpt-oss-20b": {
|
||||
"input_cost_per_token": 1.8e-07,
|
||||
"input_cost_per_token": 2e-08,
|
||||
"litellm_provider": "openrouter",
|
||||
"max_input_tokens": 131072,
|
||||
"max_output_tokens": 32768,
|
||||
"max_tokens": 32768,
|
||||
"mode": "chat",
|
||||
"output_cost_per_token": 8e-07,
|
||||
"output_cost_per_token": 1e-07,
|
||||
"source": "https://openrouter.ai/openai/gpt-oss-20b",
|
||||
"supports_function_calling": true,
|
||||
"supports_parallel_function_calling": true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue