-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (27 loc) · 1.16 KB
/
.env.example
File metadata and controls
39 lines (27 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
29
30
31
32
33
34
35
36
37
38
39
# Randomness of the model
TEMPERATURE=0.9
# Discord Bot Token
DISCORD_TOKEN=YourBotToken
# Discord Guild Names (comma-separated list, used if USE_GUILD_ID is false)
DISCORD_GUILD=ServerName
# Discord Guild IDs (comma-separated list, used if USE_GUILD_ID is true)
DISCORD_GUILD_ID=ServerID
# Use Guild ID instead of name (true/false)
USE_GUILD_ID=true
# Allowed Channel IDs (comma-separated list, bot will only respond in these channels)
CHANNELS=ChannelID
# Enable debug output for AI responses (set to "true" or "1" to enable debug logs)
DEBUG=false
# Disable streaming AI responses (set to "true" or "1" to disable edits/Thinking... and only send the final reply, for slow/unstable connections)
DISABLE_STREAM=false
# Streaming granularity (number of characters between updates, 0 = update on every character)
STREAM_CHAR=50
# Cache directory (default: ./cache)
CACHE_DIR=./cache
# Model config folder (default: ./model)
M_CFG_FOLDER=./model
# Show welcome/online message on bot startup (true/false)
WELCOME_MSG=true
# Enable dynamic response behavior (true/false)
# If true, the bot may choose not to respond to certain messages by outputting "///noresponse"
DYNAMIC=true