File size: 2,507 Bytes
9d6dc45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# ═══════════════════════════════════════════════════════════════════════════════
# SCAM HONEYPOT SYSTEM - ENVIRONMENT CONFIGURATION
# India AI Impact Buildathon 2025
# ═══════════════════════════════════════════════════════════════════════════════

# Copy this file to .env and fill in your API keys

# ─────────────────────────────────────────────────────────────────────────────
# LLM Provider Selection
# Options: "groq", "openrouter", "openai", "anthropic"
# ─────────────────────────────────────────────────────────────────────────────
LLM_PROVIDER=groq

# ─────────────────────────────────────────────────────────────────────────────
# API Keys (Add at least one for LLM features)
# ─────────────────────────────────────────────────────────────────────────────

# πŸ”₯ Groq - FAST & FREE! (Recommended for hackathon)
# Get key at: https://console.groq.com/keys
GROQ_API_KEY=

# OpenRouter - Access many models with one key
# Get key at: https://openrouter.ai/keys
OPENROUTER_API_KEY=

# OpenAI (Optional)
OPENAI_API_KEY=

# Anthropic (Optional)
ANTHROPIC_API_KEY=

# ─────────────────────────────────────────────────────────────────────────────
# Application Settings
# ─────────────────────────────────────────────────────────────────────────────
DEBUG=false