#7275 Unable to use any Azure AI models with `services.ai.azure.com` url
### Discussed in https://github.com/BerriAI/litellm/discussions/7098 <div type='discussions-op-text'> <sup>Originally posted by **semidark** December 9, 2024</sup> **Hi Folks,** I just got started with LiteLLM as a proxy because I needed an OpenAI-compatible API for my Azure AI Service. I began by working with OpenAI models (`gpt-4o` and `gpt-4o-mini`), and everything worked perfectly. So I thought, *why not try some other models?* I attempted to use `Mistral-large`. Here’s my configuration: ```yaml model_list: - model_name: gpt-4o litellm_params: model: azure/gpt-4o api_base: "https://censored.openai.azure.com/" api_key: "censored" api_version: "2024-05-01-preview" - model_name: gpt-4o-mini litellm_params: model: azure/gpt-4o-mini api_base: "https://censored.openai.azure.com/" api_key: "censored" api_version: "2024-05-01-preview" - model_name: Mistral-large litellm_params: model: azure_ai/Mistral-large api_base: "https://censored.services.ai.azure.com/" api_key: "censored" api_version: "2024-05-01-preview" ``` I tried a few variations of the model strin…