forked from Fahad1110136/AI-AnamolyDetector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (34 loc) · 1.58 KB
/
Copy path.env.example
File metadata and controls
46 lines (34 loc) · 1.58 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
40
41
42
43
44
45
46
# AI Anomaly Detector - Environment Configuration
# Copy this file to .env and fill in your actual values
# NEVER commit .env to version control
# =============================================================================
# LLM API KEYS (Required: at least one)
# =============================================================================
# Groq API Key - Get from https://console.groq.com/keys
GROQ_API_KEY=your_groq_api_key_here
# Cerebras API Key - Get from https://cloud.cerebras.ai/
CEREBRAS_API_KEY=your_cerebras_api_key_here
# =============================================================================
# OPTIONAL: LLM Configuration
# =============================================================================
# Primary LLM provider: "groq" or "cerebras"
# LLM_PRIMARY_PROVIDER=groq
# Model overrides (use defaults if not specified)
# GROQ_MODEL=llama-3.3-70b-versatile
# CEREBRAS_MODEL=llama3.1-8b
# =============================================================================
# OPTIONAL: Detection Thresholds
# =============================================================================
# Risk thresholds (0.0 - 1.0)
# THRESHOLD_LOW_RISK=0.2
# THRESHOLD_HIGH_RISK=0.8
# Confidence thresholds (0.0 - 1.0)
# THRESHOLD_MID_CONFIDENCE=0.6
# THRESHOLD_HIGH_CONFIDENCE=0.85
# =============================================================================
# OPTIONAL: Storage Paths
# =============================================================================
# Vector database storage path
# VECTOR_DB_PATH=./chroma_db
# System memory file path
# SYSTEM_MEMORY_PATH=./system_memory.json