File size: 3,403 Bytes
9d6dc45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1838600
 
9d6dc45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1838600
9d6dc45
 
 
 
429f197
e6999f9
 
 
 
 
 
 
 
 
 
 
 
 
 
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# ═══════════════════════════════════════════════════════════════════════════════
# 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