forked from 0xMassi/webclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
43 lines (33 loc) · 1.12 KB
/
Copy pathenv.example
File metadata and controls
43 lines (33 loc) · 1.12 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
# ============================================
# Webclaw Configuration
# Copy to .env and fill in your values
# ============================================
# --- LLM Providers ---
# Ollama (local, default provider)
OLLAMA_HOST=http://localhost:11434
OLLAMA_MODEL=qwen3:8b
# OpenAI (optional cloud fallback)
# OPENAI_API_KEY — set your OpenAI key
# OPENAI_BASE_URL — defaults to https://api.openai.com/v1
# OPENAI_MODEL — defaults to gpt-4o-mini
# Anthropic (optional cloud fallback)
# ANTHROPIC_API_KEY — set your Anthropic key
# ANTHROPIC_MODEL — defaults to claude-sonnet-4-20250514
# --- Proxy ---
# Single proxy
# WEBCLAW_PROXY=http://user:pass@host:port
# Proxy file (one per line: host:port:user:pass)
# WEBCLAW_PROXY_FILE=/path/to/proxies.txt
# --- Server (webclaw-server only) ---
# WEBCLAW_PORT=3000
# WEBCLAW_HOST=0.0.0.0
# WEBCLAW_API_KEY=your-auth-key
# WEBCLAW_MAX_CONCURRENCY=50
# WEBCLAW_JOB_TTL_SECS=3600
# WEBCLAW_MAX_JOBS=100
# --- CLI LLM overrides ---
# WEBCLAW_LLM_PROVIDER=ollama
# WEBCLAW_LLM_MODEL=qwen3:8b
# WEBCLAW_LLM_BASE_URL=http://localhost:11434
# --- Logging ---
# WEBCLAW_LOG=info