-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathazure-config-example.yaml
More file actions
38 lines (33 loc) · 945 Bytes
/
azure-config-example.yaml
File metadata and controls
38 lines (33 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Example Azure Infrastructure Configuration
# This demonstrates the new Azure infrastructure support in Phase 2
# MCP Server Configuration
mcp_server:
command: "npx"
args:
- "-y"
- "@modelcontextprotocol/server-filesystem"
- "{workdir}"
# Model Configuration
provider: "anthropic"
model: "claude-sonnet-4-20250514"
# Benchmark Configuration
benchmark: "swe-bench-lite"
sample_size: 5
# Infrastructure Configuration (NEW in Phase 2)
infrastructure:
mode: "azure"
azure:
# Required
resource_group: "mcpbr-evaluation-rg"
# Optional (with defaults shown)
location: "eastus"
vm_size: "Standard_D8s_v3" # Optional - uses cpu_cores/memory_gb if not specified
# cpu_cores: 8
# memory_gb: 32
disk_gb: 250
auto_shutdown: true
preserve_on_error: true
env_keys_to_export:
- "ANTHROPIC_API_KEY"
# ssh_key_path: null # Auto-generated if not provided
python_version: "3.11"