remote::azure
Description​
Azure OpenAI inference provider for accessing GPT models and other Azure services. Provider documentation https://learn.microsoft.com/en-us/azure/ai-foundry/openai/overview
Configuration​
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
allowed_models | list[str | None | No | List of models that should be registered with the model registry. If None, all models are allowed. | |
refresh_models | <class 'bool'> | No | False | Whether to refresh models periodically from the provider |
api_key | pydantic.types.SecretStr | None | No | Authentication credential for the provider | |
api_base | <class 'pydantic.networks.HttpUrl'> | No | Azure API base for Azure (e.g., https://your-resource-name.openai.azure.com) | |
api_version | str | None | No | Azure API version for Azure (e.g., 2024-12-01-preview) | |
api_type | str | None | No | azure | Azure API type for Azure (e.g., azure) |
Sample Configuration​
api_key: ${env.AZURE_API_KEY:=}
api_base: ${env.AZURE_API_BASE:=}
api_version: ${env.AZURE_API_VERSION:=}
api_type: ${env.AZURE_API_TYPE:=}