-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 1.55 KB
/
.env.example
File metadata and controls
26 lines (20 loc) · 1.55 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
# Domain Classifier — environment variables
# Copy to .env and fill in values. Never commit .env to git.
# ── AI Classifier ─────────────────────────────────────────────────────────────
# Anthropic API key for Claude-powered AI comparison
# Get yours at: https://console.anthropic.com/
DC_AI_API_KEY=sk-ant-...
# Claude model to use (haiku = fast/cheap, sonnet = more accurate)
DC_AI_MODEL=claude-haiku-4-5-20251001
# Only call AI when static classifier confidence is below this threshold (0.0–1.0)
# Set to 1.0 to always run AI comparison
DC_AI_COMPARE_THRESHOLD=0.6
# ── API ───────────────────────────────────────────────────────────────────────
# Before team distribution: restrict to specific origins instead of *
# DC_CORS_ORIGINS=https://your-domain.com
# ── Cache ─────────────────────────────────────────────────────────────────────
# DC_CACHE_ENABLED=true
# DC_CACHE_TTL_HOURS=24
# ── Concurrency ───────────────────────────────────────────────────────────────
# DC_WORKERS=10
# DC_DOMAIN_TIMEOUT=30