-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (31 loc) · 1.12 KB
/
.env.example
File metadata and controls
39 lines (31 loc) · 1.12 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
# ===== EMAIL CONFIGURATION =====
# Your receiving email account
EMAIL=your-email@example.com
EMAIL_PASSWORD=your-app-password
IMAP=imap.gmail.com
SMTP=smtp.gmail.com
# ===== AI PROVIDER (Required for GUI) =====
# Groq API (recommended - free at https://console.groq.com)
GROQ_API_KEY=your-groq-api-key-here
GROQ_MODEL=llama-3.1-8b-instant
# ===== OPTIONAL: LOCAL OLLAMA =====
# Uncomment if using local Ollama instead of Groq
# OLLAMA_URL=http://localhost:11434/v1
# OLLAMA_MODEL=llama3.1
# ===== OPTIONAL: MAIN_LOOP ONLY (Advanced Mode) =====
# Azure Maps API for geolocation (only needed for main_loop_v2.py)
# AZURE_API_KEY=your-azure-maps-key
# Recipients for geographic routing (North/Center/South)
# RECIPIENTS_NORD_PROD=north@company.com
# RECIPIENTS_CENTRO_PROD=center@company.com
# RECIPIENTS_SUD_PROD=south@company.com
# Control email for errors
# CONTROL_EMAIL=admin@company.com
# LangSmith for monitoring (optional)
# LANGSMITH_API_KEY=your-langsmith-key
# LLM Configuration (optional overrides)
# LLM_MODEL=llama-3.1-8b-instant
# LLM_TEMPERATURE=0.0
# CONFIDENCE_THRESHOLD=90
# Processing interval (seconds)
# POLL_INTERVAL=60