# Discord token for the bot CLIENT_TOKEN = BOT_TOKEN # Default model for new users MODEL = DEFAULT_MODEL # ip/port address of the LLM server (ollama, llmman, ...), I use 172.18.0.3 for docker, 127.0.0.1 for local # ollama listens on 11434, llmman (https://github.com/llmmanorg/llmman) on 17434 # OLLAMA_IP / OLLAMA_PORT are still accepted as deprecated aliases LLM_ENDPOINT = IP_ADDRESS LLM_PORT = PORT # ip address for discord bot container, I use 172.18.0.2, use different IP than llm_endpoint DISCORD_IP = IP_ADDRESS # subnet address, ex. 172.18.0.0 as we use /16. SUBNET_ADDRESS = ADDRESS