Azure AI Model Inference API
Azure AI uses the Azure AI Model Inference API exclusively. Legacy Azure OpenAI deployment endpoints (/openai/deployments/{name}?api-version=XXX) are no longer supported.
| API Version | Endpoint Format | Usage |
|---|---|---|
| v1 (default) | {endpoint}/openai/v1 | Stable — model specified in the request body |
| preview | {endpoint}/openai/v1?api-version=preview | Preview features — model specified in the request body |
- Model in body — The model/deployment name is sent in the request body (
modelfield), not in the URL path - No deployment URLs — No
/openai/deployments/{name}paths - No dated versions — No
2024-10-21or2025-04-01-previewstyle version strings - Authentication — Uses
api-keyheader (API key) orAuthorization: Bearer(Managed Identity), same as before
Embeddings
Text embedding models useAzureOpenAIEmbeddings from @langchain/openai, which still requires a dated API version (e.g., 2024-06-01) for the Azure OpenAI Embeddings API. This is configured per embedding endpoint in Admin → AI Search Endpoints ([#/admin/search]).