-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
32 lines (26 loc) · 1.11 KB
/
env.example
File metadata and controls
32 lines (26 loc) · 1.11 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
# .env.example — Copy this to .env and fill in your values.
# Never commit .env — it is gitignored.
# API keys — add whichever providers you plan to use:
XAI_API_KEY=your_grok_api_key_here
ANTHROPIC_API_KEY=your_claude_api_key_here
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Default model (used when no task-specific config exists)
ARCHI_PROVIDER=xai
ARCHI_MODEL=grok-4-1-fast-reasoning
# Task-specific models — generation_loop reads these for plan vs codegen phases
ARCHI_PLAN_PROVIDER=xai
ARCHI_PLAN_MODEL=grok-4-1-fast-reasoning
ARCHI_CODEGEN_PROVIDER=anthropic
ARCHI_CODEGEN_MODEL=claude-sonnet-4-6
# Budget ceilings (USD) — hard guardrails enforced by alignment gates
# Session budget is informational only (logged, never blocks).
# Daily and monthly are the real hard blocks.
ARCHI_DAILY_BUDGET=5.00
ARCHI_MONTHLY_BUDGET=100.00
# Archi-Core settings
ARCHI_LOG_LEVEL=INFO
ARCHI_TEST_COMMAND=pytest tests/
# Communication — Archi notifies Jesse of cycle results, errors, questions
DISCORD_BOT_TOKEN=your_bot_token_here
JESSE_DISCORD_ID=your_user_id_here
ARCHI_COMMS_FALLBACK_PATH=data/archi_messages.txt