VM0VM0
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-foundry

You'll be prompted for:

  1. ANTHROPIC_FOUNDRY_API_KEY - API key from Azure Foundry portal (Endpoints and keys)
  2. ANTHROPIC_FOUNDRY_RESOURCE - Azure resource name (from portal URL)
  3. Model - Custom model ID (e.g., claude-sonnet-4-5)

Get Credentials

  1. Go to the Azure Portal
  2. Navigate to your Azure Foundry resource
  3. Find Endpoints and keys section
  4. 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-5

Run

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

Resources