14 lines
451 B
Plaintext
14 lines
451 B
Plaintext
# The Discord bot's authentication token
|
|
DISCORD_TOKEN=<discord-token>
|
|
|
|
# LastFM API key for looking up artist and song info
|
|
LASTFM_API_KEY=<lastfm-key>
|
|
|
|
# OpenAI API key for chatbot functionality
|
|
OPENAI_API_KEY=<openai-key>
|
|
# Prompt used before each user chat prompt. Set to empty string to disable the
|
|
# chatbot functionality.
|
|
CHATBOT_PROMPT="You are a friendly Discord chatbot."
|
|
|
|
# Database path for user activity tracking
|
|
DB_PATH="./activities.db" |