-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (20 loc) · 1.03 KB
/
Copy path.env.example
File metadata and controls
28 lines (20 loc) · 1.03 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
# Copy to .env and fill in your values
# Required — get your key at https://console.anthropic.com
ANTHROPIC_API_KEY=sk-ant-...
# Claude model used by both agents (defaults to claude-sonnet-4-6)
ANTHROPIC_MODEL=claude-sonnet-4-6
# Port the backend listens on (7860 = HF Spaces default; 5000 = local dev)
PORT=5000
# Where ChromaDB persists its vector index
CHROMA_PERSIST_DIR=./backend/chroma_db
# Flask environment (set to 'production' in deployed environments)
FLASK_ENV=development
# Comma-separated list of allowed CORS origins (local dev only; prod uses same origin)
CORS_ORIGINS=http://localhost:3000
# Frontend: backend URL for local React dev server (leave unset in Docker — uses same origin)
REACT_APP_API_URL=http://localhost:5000
# Langfuse LLM observability — traces token usage, costs, tool calls, latency
# Get keys at https://cloud.langfuse.com (free tier) or leave unset to disable
LANGFUSE_PUBLIC_KEY=pk-lf-...
LANGFUSE_SECRET_KEY=sk-lf-...
# LANGFUSE_HOST=https://cloud.langfuse.com # override only for self-hosted deployments