-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy path.env.example
More file actions
47 lines (37 loc) · 1.78 KB
/
.env.example
File metadata and controls
47 lines (37 loc) · 1.78 KB
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
39
40
41
42
43
44
45
46
47
# ClawBench Environment Variables
# Copy this file to .env and fill in your values:
# cp .env.example .env
# =============================================================================
# Model Provider API Keys (at least one required)
# =============================================================================
# Anthropic API key (recommended)
ANTHROPIC_API_KEY=
# OpenAI API key (alternative)
OPENAI_API_KEY=
# =============================================================================
# Model Selection
# =============================================================================
# LLM model for evaluation (provider/model format)
# Examples:
# anthropic/claude-sonnet-4.6 (default, Anthropic API)
# ollama/llama3.3 (local Ollama)
# openai/gpt-4o (OpenAI)
# vllm/deepseek-r1 (local vLLM)
CLAWBENCH_MODEL=anthropic/claude-sonnet-4.6
# =============================================================================
# OpenClaw Gateway Settings
# =============================================================================
# Gateway access token (change for production)
OPENCLAW_GATEWAY_TOKEN=sandbox-token-12345
# =============================================================================
# Port (change if 18790 is in use)
# =============================================================================
OPENCLAW_PORT=18790
# =============================================================================
# Scenario & Variant
# =============================================================================
# Available scenarios: client_escalation, morning_brief, inbox_triage,
# inbox_to_action, team_standup
# Available variants: baseline, optimized
SCENARIO=client_escalation
VARIANT=optimized