-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (24 loc) · 1.78 KB
/
Copy path.env.example
File metadata and controls
29 lines (24 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
# ── Provider Selection ──────────────────────────────────────────────────
# Set to one of: openai, anthropic, openrouter, ollama
# If unset, the stub provider is used (no real LLM calls).
# AGENT_WORKBENCH_PROVIDER=openai
# ── Model override ──────────────────────────────────────────────────────
# Override the default model for the selected provider.
# AGENT_WORKBENCH_MODEL=gpt-4o
# ── Provider API Keys ───────────────────────────────────────────────────
# Required for the corresponding provider. Do NOT commit real keys.
# OPENAI_API_KEY=sk-...
# ANTHROPIC_API_KEY=sk-ant-...
# OPENROUTER_API_KEY=sk-or-...
# ── Provider Base URLs (optional overrides) ─────────────────────────────
# OPENAI_BASE_URL=https://api.openai.com/v1
# ANTHROPIC_BASE_URL=https://api.anthropic.com/v1
# OPENROUTER_BASE_URL=https://openrouter.ai/api/v1
# OLLAMA_BASE_URL=http://localhost:11434/v1
# ── OpenRouter metadata (optional) ──────────────────────────────────────
# Used for OpenRouter's ranking/analytics headers.
# OPENROUTER_SITE_URL=http://localhost:5173
# OPENROUTER_SITE_NAME=agent-workbench
# ── Server ──────────────────────────────────────────────────────────────
# AGENT_WORKBENCH_HOST=127.0.0.1
# AGENT_WORKBENCH_PORT=4096