mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
Update mistral-medium prices and context sizes (#10729)
* Update mistral-medium prices and context sizes While testing the Mistral model, I noticed a discrepancy in the pricing shown on the logs screen. After reviewing the code, I confirmed that the pricing values were incorrect. This PR corrects the input and output token pricing for the latest Mistral model and adds the newly released mistral-medium-2505 version. * Adds tool calling flag to mistral-medium * Adds mistral-medium price updates to the main model price file * Update model_prices_and_context_window_backup.json sets mistral medium alias to the old values as it probably points to the old version. * Update model_prices_and_context_window.json * Update model_prices_and_context_window_backup.json * Update model_prices_and_context_window.json
This commit is contained in:
parent
14cdf61537
commit
56c32ef503
2 changed files with 32 additions and 6 deletions
|
|
@ -3603,12 +3603,25 @@
|
|||
},
|
||||
"mistral/mistral-medium-latest": {
|
||||
"max_tokens": 8191,
|
||||
"max_input_tokens": 32000,
|
||||
"max_input_tokens": 131072,
|
||||
"max_output_tokens": 8191,
|
||||
"input_cost_per_token": 0.0000027,
|
||||
"output_cost_per_token": 0.0000081,
|
||||
"input_cost_per_token": 0.0000004,
|
||||
"output_cost_per_token": 0.000002,
|
||||
"litellm_provider": "mistral",
|
||||
"mode": "chat",
|
||||
"supports_function_calling": true,
|
||||
"supports_assistant_prefill": true,
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
"mistral/mistral-medium-2505": {
|
||||
"max_tokens": 8191,
|
||||
"max_input_tokens": 131072,
|
||||
"max_output_tokens": 8191,
|
||||
"input_cost_per_token": 0.0000004,
|
||||
"output_cost_per_token": 0.000002,
|
||||
"litellm_provider": "mistral",
|
||||
"mode": "chat",
|
||||
"supports_function_calling": true,
|
||||
"supports_assistant_prefill": true,
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
|
|
|
|||
|
|
@ -3620,12 +3620,25 @@
|
|||
},
|
||||
"mistral/mistral-medium-latest": {
|
||||
"max_tokens": 8191,
|
||||
"max_input_tokens": 32000,
|
||||
"max_input_tokens": 131072,
|
||||
"max_output_tokens": 8191,
|
||||
"input_cost_per_token": 0.0000027,
|
||||
"output_cost_per_token": 0.0000081,
|
||||
"input_cost_per_token": 0.0000004,
|
||||
"output_cost_per_token": 0.000002,
|
||||
"litellm_provider": "mistral",
|
||||
"mode": "chat",
|
||||
"supports_function_calling": true,
|
||||
"supports_assistant_prefill": true,
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
"mistral/mistral-medium-2505": {
|
||||
"max_tokens": 8191,
|
||||
"max_input_tokens": 131072,
|
||||
"max_output_tokens": 8191,
|
||||
"input_cost_per_token": 0.0000004,
|
||||
"output_cost_per_token": 0.000002,
|
||||
"litellm_provider": "mistral",
|
||||
"mode": "chat",
|
||||
"supports_function_calling": true,
|
||||
"supports_assistant_prefill": true,
|
||||
"supports_tool_choice": true
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue