2025-12-10 11:26:01 -08:00
|
|
|
# Discord Bot Token - Get from https://discord.com/developers/applications
|
2024-12-19 17:19:06 -08:00
|
|
|
DISCORD_TOKEN=your_discord_bot_token
|
2025-12-10 11:26:01 -08:00
|
|
|
|
|
|
|
|
# LiteLLM API Configuration
|
|
|
|
|
LITELLM_API_KEY=sk-1234
|
|
|
|
|
LITELLM_API_BASE=http://localhost:4000
|
|
|
|
|
|
|
|
|
|
# Model name (any model supported by your LiteLLM proxy)
|
|
|
|
|
MODEL_NAME=gpt-4-turbo-preview
|
|
|
|
|
|
|
|
|
|
# System Prompt Configuration (optional)
|
|
|
|
|
SYSTEM_PROMPT_FILE=./system_prompt.txt
|
|
|
|
|
|
|
|
|
|
# Maximum tokens to use for conversation history (optional, default: 3000)
|
|
|
|
|
MAX_HISTORY_TOKENS=3000
|
|
|
|
|
|
|
|
|
|
# Enable debug logging (optional, default: false)
|
|
|
|
|
# Set to 'true' to see detailed logs for troubleshooting
|
|
|
|
|
DEBUG_LOGGING=false
|
|
|
|
|
|
|
|
|
|
# Enable MCP tools integration (optional, default: false)
|
|
|
|
|
# Set to 'true' to allow the bot to use tools configured in your LiteLLM proxy
|
|
|
|
|
# Tools are auto-executed without user confirmation
|
|
|
|
|
ENABLE_TOOLS=false
|