-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
28 lines (21 loc) · 1.16 KB
/
Copy path.env.example
File metadata and controls
28 lines (21 loc) · 1.16 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
# Required: Anthropic API key (get one at console.anthropic.com)
ANTHROPIC_API_KEY=
# Required: your bot's name (used as trigger in groups: @BotName)
ASSISTANT_NAME=
# Telegram bot token (required)
TELEGRAM_BOT_TOKEN=
# Voice transcription & replies (optional — needs ElevenLabs account)
# ELEVENLABS_API_KEY= # Used for both transcription (Scribe) and voice replies (TTS)
# ELEVENLABS_VOICE_ID= # Find voice IDs at elevenlabs.io/voice-library
# Main agent model (optional — defaults to claude-sonnet-4-6)
# Options: claude-sonnet-4-6, claude-opus-4-7, claude-haiku-4-5
# GHOSTCLAW_MODEL=claude-sonnet-4-6
# Fast-path model (optional — cheap triage layer; defaults to claude-sonnet-4-6)
# Kept separate from GHOSTCLAW_MODEL so /model switching doesn't bleed through.
# Set to claude-haiku-4-5 to cut triage cost ~3x, at the price of weaker
# instruction-following (handoff leaks, preamble in replies).
# GHOSTCLAW_FAST_PATH_MODEL=claude-sonnet-4-6
# Daily spend cap in USD (optional — agent falls back to fast-path only when exceeded)
# GHOSTCLAW_DAILY_BUDGET_USD=5
# Gmail integration (optional — needs OAuth setup)
# GMAIL_MCP_ENABLED=1