-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (29 loc) · 1.79 KB
/
Copy path.env.example
File metadata and controls
39 lines (29 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# ══════════════════════════════════════════════════
# ChatRobber Bot Configuration
# ══════════════════════════════════════════════════
# Copy this file to .env and fill in your values:
# 1. Copy: cp .env.example .env
# 2. Edit: Open .env in any text editor
# 3. Paste your keys in place of the placeholder text
# ══════════════════════════════════════════════════
# Discord Bot Token (get from https://discord.com/developers/applications)
DISCORD_TOKEN=paste_your_discord_bot_token_here
# Deepgram API Key (get from https://console.deepgram.com)
DEEPGRAM_API_KEY=paste_your_deepgram_api_key_here
# OpenRouter API Key (get from https://openrouter.ai/keys)
OPENROUTER_API_KEY=paste_your_openrouter_api_key_here
# ══════════════════════════════════════════════════
# Optional Settings (defaults are fine)
# ══════════════════════════════════════════════════
# How often to generate summaries (in minutes)
SUMMARY_INTERVAL_MINUTES=10
# AI model for periodic chunk summaries (cheap & fast)
CHUNK_MODEL=google/gemini-2.0-flash-001
# AI model for final narrative summary (good context window)
FINAL_MODEL=google/gemini-2.0-flash-001
# Deepgram speech recognition model
DEEPGRAM_MODEL=nova-3
# Language for speech recognition
DEEPGRAM_LANGUAGE=en
# Set to true for extra-detailed console logs
DEBUG=false