-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
38 lines (30 loc) · 1.39 KB
/
.env.example
File metadata and controls
38 lines (30 loc) · 1.39 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
# Alive Configuration
# Copy this to .env and fill in your values.
# LLM Provider: claude-code (recommended), anthropic, openai, or ollama
ALIVE_LLM_PROVIDER=claude-code
ALIVE_LLM_MODEL=claude-sonnet-4-5-20250929
# ALIVE_API_KEY=your_api_key_here # Not needed for claude-code or ollama
# Ollama (local models — zero API cost, fully private)
# ALIVE_LLM_PROVIDER=ollama
# ALIVE_LLM_MODEL=llama3.1
# ALIVE_OLLAMA_URL=http://localhost:11434 # default
# Context window (adjust for your model)
# ALIVE_MAX_CONTEXT_TOKENS=200000
# Session limits
# ALIVE_SESSION_TIMEOUT=3600 # Max seconds per session (default: 1 hour)
# ALIVE_MAX_RETRIES=3 # LLM retry attempts with exponential backoff
# ALIVE_MAX_TURNS=200 # Max agentic turns per session
# Safety: set a kill phrase to enable emergency stop via messages
# ALIVE_KILL_PHRASE=EMERGENCY STOP 12345
# Adaptive wake intervals (seconds)
# ALIVE_FAST_INTERVAL=60 # Wake faster when messages arrive
# ALIVE_NORMAL_INTERVAL=300 # Default interval (5 minutes)
# Quiet hours (UTC, 24h). Set both to same value to disable.
# ALIVE_QUIET_START=23 # 11 PM UTC
# ALIVE_QUIET_END=8 # 8 AM UTC
# Communication adapters (used by scripts in comms/)
# TELEGRAM_BOT_TOKEN=your_bot_token
# TELEGRAM_CHAT_ID=your_chat_id
# EMAIL_ADDRESS=your_email@example.com
# EMAIL_PASSWORD=your_app_password
# EMAIL_IMAP_HOST=imap.gmail.com