-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
29 lines (24 loc) · 1.64 KB
/
Copy pathenv.example
File metadata and controls
29 lines (24 loc) · 1.64 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
# ── Database & infrastructure ──────────────────────────────────────────────
DATABASE_URL=postgresql://tbg:tbg@localhost:5433/tbg
REDIS_URL=redis://redis:6379
API_SECRET_KEY=your_secret_key_here
# ── Telegram bot ────────────────────────────────────────────────────────────
TELEGRAM_TOKEN=your_telegram_token_here
# ── LLM Provider ────────────────────────────────────────────────────────────
# Choose one: gemini | openai | anthropic | groq
# Bot default: groq (fast, free) with gemini fallback
# API default: gemini
LLM_PROVIDER=gemini
# Optional: override the default model for the selected provider
# gemini default: gemini-3-flash-preview
# openai default: gpt-4o-mini
# anthropic default: claude-haiku-4-5-20251001
# groq default: llama-3.1-8b-instant
# LLM_MODEL=gemini-2.5-flash
# ── API keys (set only what you use) ───────────────────────────────────────
GEMINI_API_KEY=your_gemini_key_here
GROQ_API_KEY=your_groq_key_here
OPENAI_API_KEY=your_openai_key_here
ANTHROPIC_API_KEY=your_anthropic_key_here
# ── Optional tuning ─────────────────────────────────────────────────────────
# RATE_LIMIT_PER_SEC=30