-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (26 loc) · 910 Bytes
/
.env.example
File metadata and controls
37 lines (26 loc) · 910 Bytes
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
# Discord bot token (from https://discord.com/developers/applications)
DISCORD_BOT_TOKEN=your-bot-token-here
# Channel ID where the bot listens for new support questions
DISCORD_CHANNEL_ID=123456789012345678
# Role required to interact with the bot
DISCORD_REQUIRED_ROLE=webapp-user
# Discord user ID to ping on escalation (0 to disable)
ESCALATION_USER_ID=0
# Path to the ATN bridge provider package
ATN_PATH=/path/to/atn
# Claude model to use (sonnet, opus, haiku)
MODEL=sonnet
# Documentation repos (comma-separated directory names under DOCS_ROOT)
DOCS_ROOT=./docs
DOC_REPOS=homebase-app,baseDAO
# Rate limiting
MAX_TURNS_PER_DAY=20
RATE_WINDOW_SECS=86400
# Max tool call turns per question
MAX_TURNS=20
# Conversation history depth (per thread)
MAX_HISTORY_TURNS=50
# Max characters returned when reading a file
MAX_FILE_CHARS=12000
# Logging level (DEBUG, INFO, WARNING, ERROR)
LOG_LEVEL=INFO