You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- **`litellm_credential_name`**: Reference to authentication credentials configured in secrets
148
202
149
203
<details>
@@ -586,6 +640,26 @@ model_list:
586
640
587
641
### GPT-5 series
588
642
643
+
Generic configuration for GPT-5 Series models is the following.
644
+
645
+
```yaml
646
+
- model_name: gpt-5-2025-08-07
647
+
litellm_params:
648
+
model: azure/gpt5_series/deployment-name
649
+
api_base: https://api-base.openai.azure.com/
650
+
litellm_credential_name: azure_openai_credential
651
+
model_info:
652
+
id: gpt-5-2025-08-07
653
+
base_model: azure/gpt-5-2025-08-07
654
+
label: "GPT-5 2025-08-07"
655
+
```
656
+
657
+
The very new models may require a particular version of Azure API. For example, gpt-5.3-codex models require API version `2025-03-01-preview` or newer.
658
+
Therefore, if your CLI client doesn't add compatible `api-version` to the request or CodeMie instance is configured to use older API version, the model may not work.
659
+
To fix the issue, set `api_version` parameter to the `litellm_params` as shown [below](#gpt-53-codex-with-chat-compatibility-mode).
660
+
661
+
Otherwise, if client explicitly set `api-version` in request LiteLLM uses it instead of configured value.
0 commit comments