# ═══════════════════════════════════════════════════════════════════════════════ # 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) # MULTI-KEY SUPPORT: You can provide multiple keys separated by commas for # automatic rotation and load balancing (e.g., KEY1,KEY2,KEY3) # ───────────────────────────────────────────────────────────────────────────── # 🔥 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 GUVI_API_KEY=GUVI_HACKATHON_V2 # Feature Flags ENABLE_LLM_DETECTION=true ENABLE_LLM_RESPONSES=true ENABLE_THREAT_INTELLIGENCE=true ENABLE_LAW_ENFORCEMENT_API=true ENABLE_ENGAGEMENT_DELAY=true # ───────────────────────────────────────────────────────────────────────────── # SOC Hardening (SIEM Integration) # ───────────────────────────────────────────────────────────────────────────── SYSLOG_ENABLED=false SYSLOG_HOST=localhost SYSLOG_PORT=514