forked from MephistophelesChen/voidcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
69 lines (49 loc) · 2.06 KB
/
Copy path.env.example
File metadata and controls
69 lines (49 loc) · 2.06 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# VoidCode environment example
#
# Copy this file to `.env` (gitignored) and fill in only the keys you need.
# All variables are optional; runtime defaults apply when a variable is unset.
# ─── Runtime configuration ───────────────────────────────────────────────────
# Default model used when --model is not provided on the CLI.
# Format: "<provider>/<model>" (e.g. "opencode-go/glm-5", "anthropic/claude-3-5-sonnet").
VOIDCODE_MODEL=
# Approval mode for write/edit/shell tools: ask | deny | allow
VOIDCODE_APPROVAL_MODE=
# Execution engine: provider | deterministic
# Use `deterministic` for offline/test/no-key harness flows.
VOIDCODE_EXECUTION_ENGINE=
# Hard upper bound on graph steps per request.
VOIDCODE_MAX_STEPS=
# Per-tool timeout in seconds.
VOIDCODE_TOOL_TIMEOUT_SECONDS=
# Reasoning effort hint forwarded to providers that support it: low | medium | high
VOIDCODE_REASONING_EFFORT=
# Override the persistent session SQLite path.
# Default: $XDG_STATE_HOME/voidcode/sessions.sqlite3
VOIDCODE_DB_PATH=
# ─── Provider credentials ────────────────────────────────────────────────────
# Provide whichever providers you intend to use; leave the rest unset.
# OpenCode-Go (default product path in README)
OPENCODE_API_KEY=
# Anthropic Claude
ANTHROPIC_API_KEY=
# OpenAI
OPENAI_API_KEY=
# Google Gemini
GOOGLE_API_KEY=
# GitHub Copilot
GITHUB_COPILOT_TOKEN=
# LiteLLM proxy (default base http://127.0.0.1:4000 — dev only)
LITELLM_API_KEY=
# Z.AI / GLM
GLM_API_KEY=
# Moonshot Kimi
KIMI_API_KEY=
# MiniMax
MINIMAX_API_KEY=
# Aliyun Dashscope
DASHSCOPE_API_KEY=
# DeepSeek
DEEPSEEK_API_KEY=
# ─── Search / capability credentials ─────────────────────────────────────────
# Exa.ai (powers the built-in web_search tool when set; falls back to DuckDuckGo otherwise).
EXA_API_KEY=