mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 18:00:36 +00:00
38 lines
1.4 KiB
Text
38 lines
1.4 KiB
Text
---
|
|
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
|
|
sidebar_label: Remote - Azure
|
|
title: remote::azure
|
|
---
|
|
|
|
# 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` | `bool` | No | False | Whether to refresh models periodically from the provider |
|
|
| `api_key` | `SecretStr \| None` | No | | Authentication credential for the provider |
|
|
| `api_base` | `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
|
|
|
|
```yaml
|
|
api_key: ${env.AZURE_API_KEY:=}
|
|
api_base: ${env.AZURE_API_BASE:=}
|
|
api_version: ${env.AZURE_API_VERSION:=}
|
|
api_type: ${env.AZURE_API_TYPE:=}
|
|
```
|