/ .env.example
.env.example
 1  # dialog-deno-kv Environment Configuration
 2  # Copy this file to .env and update with your values
 3  # Agent behavior settings are now in config/agents/*.json files
 4  
 5  # Database Configuration (optional)
 6  DATABASE_URL=
 7  
 8  # Discord API Credentials (required)
 9  DISCORD_TOKEN=your_bot_token_here
10  DISCORD_CLIENT_ID=your_application_id_here
11  DISCORD_GUILDS_TO_INDEX=123456789012345678,987654321098765432
12  
13  # AI API Keys (required for LLM agents)
14  ANTHROPIC_API_KEY=your_anthropic_api_key_here
15  OPENAI_API_KEY=your_openai_api_key_here
16  
17  # Discord Posting Overrides (optional - can override JSON config)
18  LLM_ENABLE_DISCORD_POSTING=false
19  LLM_DISCORD_CHANNEL_ID=your_channel_id_here
20  LM_STUDIO_ENABLE_DISCORD_POSTING=false
21  LM_STUDIO_INSIGHT_CHANNEL_ID=your_insight_channel_id_here