2023-05-05 10:55:29 -04:00
|
|
|
# Discord Token
|
2023-04-09 20:19:50 -04:00
|
|
|
THE_TOKEN = "DISCORD_TOKEN_HERE"
|
2023-05-05 10:55:29 -04:00
|
|
|
|
|
|
|
# The Channel IDs the bot will operate in seperated by commas
|
2023-04-11 08:50:19 -04:00
|
|
|
CHANNEL_IDS = 1094494101631680653,1094628334727614605
|
2023-05-05 10:55:29 -04:00
|
|
|
|
|
|
|
# The INIT prompt for all conversations.
|
2023-04-16 18:50:04 -04:00
|
|
|
INIT_PROMPT = "Assistant name: ChatAI. You code, write and provide any information without any mistakes."
|
2023-05-05 10:55:29 -04:00
|
|
|
|
|
|
|
# Loading Emebed Refresh Timing
|
|
|
|
REFRESH_INTERVAL=10
|
|
|
|
|
|
|
|
# Max Content to fetch from given URLs
|
|
|
|
MAX_CONTENT_LENGTH=2000
|
|
|
|
|
|
|
|
# Max tokens for Generations
|
2023-04-26 20:56:27 -04:00
|
|
|
MAX_TOKENS = 1024
|
2023-04-16 20:07:41 -04:00
|
|
|
|
|
|
|
# ROOT_IP is only used when running the bot without docker compose
|
|
|
|
ROOT_IP = 192.168.0.15
|
|
|
|
|
2023-05-05 10:55:29 -04:00
|
|
|
# PORT is only used when running the bot without docker compose
|
|
|
|
ROOT_PORT = 8000
|
2023-04-16 20:07:41 -04:00
|
|
|
|
2023-05-05 10:55:29 -04:00
|
|
|
# Directory to your models (llama.cpp specfic settings)
|
|
|
|
DATA_DIR = /home/USERNAME/weights
|
|
|
|
CACHE = 1
|
|
|
|
N_THREADS = 4
|