-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (22 loc) · 746 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (22 loc) · 746 Bytes
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
# LLM Runtime: "ollama" (default, local) or "hf_api" (free tier fallback)
LLM_RUNTIME=ollama
# Ollama settings (local, no API key needed)
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=llama3
# Hugging Face Inference API (free tier fallback, ~1000 req/day)
HF_API_TOKEN= Add the key here
HF_MODEL=mistralai/Mistral-7B-Instruct-v0.2
# Embeddings (runs fully local, no API)
EMBEDDING_MODEL=all-MiniLM-L6-v2
EMBEDDING_SIMILARITY_THRESHOLD=0.85
# Storage
SQLITE_PATH=./memory_audit.db
# Alerts
SLACK_WEBHOOK_URL=
ALERT_CRITICAL_KEYS=refund_days,price,plan,policy_version
# API
API_HOST=0.0.0.0
API_PORT=8000
# Memory backend: "sqlite" (default, zero-cost) or "qdrant" (needs Docker)
MEMORY_BACKEND=sqlite
QDRANT_URL=http://localhost:6333