Model Selection
Azure Foundry
Run Claude on Microsoft Azure Foundry
Azure Foundry support is experimental and may change in future releases.
Azure Foundry allows you to run Claude models on Microsoft Azure infrastructure.
Quick Setup
vm0 model-provider setup --type azure-foundryYou'll be prompted for:
- ANTHROPIC_FOUNDRY_API_KEY - API key from Azure Foundry portal (Endpoints and keys)
- ANTHROPIC_FOUNDRY_RESOURCE - Azure resource name (from portal URL)
- Model - Custom model ID (e.g.,
claude-sonnet-4-5)
Get Credentials
- Go to the Azure Portal
- Navigate to your Azure Foundry resource
- Find Endpoints and keys section
- Copy the API key and resource name
Non-Interactive Setup
vm0 model-provider setup --type azure-foundry \
--credential ANTHROPIC_FOUNDRY_API_KEY=your-api-key \
--credential ANTHROPIC_FOUNDRY_RESOURCE=your-resource-name \
--model claude-sonnet-4-5Run
Once configured, run agents as usual:
vm0 run my-agent "build a todo app"Or specify the provider explicitly:
vm0 run my-agent "build a todo app" --model-provider azure-foundry