mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-12 23:01:41 +00:00
Add azure/gpt-5.2-chat-latest pricing entry
The OpenAI variant `gpt-5.2-chat-latest` is already registered, as are the dated Azure variants `azure/gpt-5.2-chat` and `azure/gpt-5.2-chat-2025-12-11`, but `azure/gpt-5.2-chat-latest` was missing. This makes cost tracking fall back to defaults when users route the `gpt-5.2-chat-latest` deployment through Azure. Pricing, context window, and capability flags mirror the existing `azure/gpt-5.2-chat` / `azure/gpt-5.2-chat-2025-12-11` entries for consistency within the gpt-5.2 family.
This commit is contained in:
parent
e64d98f725
commit
91e28a6111
1 changed files with 34 additions and 0 deletions
|
|
@ -4136,6 +4136,40 @@
|
|||
"supports_tool_choice": true,
|
||||
"supports_vision": true
|
||||
},
|
||||
"azure/gpt-5.2-chat-latest": {
|
||||
"cache_read_input_token_cost": 1.75e-07,
|
||||
"cache_read_input_token_cost_priority": 3.5e-07,
|
||||
"input_cost_per_token": 1.75e-06,
|
||||
"input_cost_per_token_priority": 3.5e-06,
|
||||
"litellm_provider": "azure",
|
||||
"max_input_tokens": 128000,
|
||||
"max_output_tokens": 16384,
|
||||
"max_tokens": 16384,
|
||||
"mode": "chat",
|
||||
"output_cost_per_token": 1.4e-05,
|
||||
"output_cost_per_token_priority": 2.8e-05,
|
||||
"supported_endpoints": [
|
||||
"/v1/chat/completions",
|
||||
"/v1/responses"
|
||||
],
|
||||
"supported_modalities": [
|
||||
"text",
|
||||
"image"
|
||||
],
|
||||
"supported_output_modalities": [
|
||||
"text"
|
||||
],
|
||||
"supports_function_calling": true,
|
||||
"supports_native_streaming": true,
|
||||
"supports_parallel_function_calling": true,
|
||||
"supports_pdf_input": true,
|
||||
"supports_prompt_caching": true,
|
||||
"supports_reasoning": true,
|
||||
"supports_response_schema": true,
|
||||
"supports_system_messages": true,
|
||||
"supports_tool_choice": true,
|
||||
"supports_vision": true
|
||||
},
|
||||
"azure/gpt-5.2-codex": {
|
||||
"cache_read_input_token_cost": 1.75e-07,
|
||||
"input_cost_per_token": 1.75e-06,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue