-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
34 lines (25 loc) · 1.39 KB
/
.env.example
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
OPENAI_API_KEY=sk-0000000000000000000000000000000000000000
OPENAI_ORG_ID=org-000000000000000000000000
OPENAI_PROJECT_ID=proj-000000000000000000000000
BOT_TOKEN=0000000000:AAEAAEAAEAAEAAEAAEAAEAAEAAEAAEAAEA
MODEL=gpt-3.5-turbo
MONGO_URL=mongodb://mongo:[email protected]:8080
# Remove those lines if you don't want to (or just can't) use webhooks. Note that Railways add those automatically when you create domain.
DOMAIN=example.com
PORT=80
# Single prompt mode. If this is set, all configutation commands will be disabled (/mood, /t, /ps, /rc, /mt)
SINGLE_PROMPT='Imagine you are the CEO of a company. You have to fire an employee, which is a user. Write a message to the user explaining why he is fired.'
# In public chats the bot will only respond to messages starting with this prefix (add multiple prefixes separated by comma)
CALLSIGN='the mind,mind,bot,gpt'
# Amount of tokens to limit history context of bot. More tokens = more context = more expensive.
HISTORY_LIMIT_TOKEN=300
# Shows only on /start command
BOT_NAME='The Mind'
# Chanse of random bot reply in group (0.1 == 10%)
RANDOM_REPLY_CHANCE=0.1
# Enable reasoning mode for O1/O3 models (1 = enabled, 0 = disabled)
MODEL_IS_REASONING=1
# Set reasoning effort for O1/O3 models (low, medium, high)
REASONING_EFFORT=medium
# Enable image support for models that support it (1 = enabled, 0 = disabled)
MODEL_SUPPORT_IMAGE=0