Skip to main content
Version: v0.4.3

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​

FieldTypeRequiredDefaultDescription
allowed_modelslist[str] | NoneNoList of models that should be registered with the model registry. If None, all models are allowed.
refresh_modelsboolNoFalseWhether to refresh models periodically from the provider
api_keySecretStr | NoneNoAuthentication credential for the provider
base_urlHttpUrl | NoneNoAzure API base for Azure (e.g., https://your-resource-name.openai.azure.com/openai/v1)
api_versionstr | NoneNoAzure API version for Azure (e.g., 2024-12-01-preview)
api_typestr | NoneNoazureAzure API type for Azure (e.g., azure)

Sample Configuration​

api_key: ${env.AZURE_API_KEY:=}
base_url: ${env.AZURE_API_BASE:=}
api_version: ${env.AZURE_API_VERSION:=}
api_type: ${env.AZURE_API_TYPE:=}