-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (20 loc) · 1.13 KB
/
Copy path.env.example
File metadata and controls
24 lines (20 loc) · 1.13 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
# ── LLM ──────────────────────────────────────────────
ANTHROPIC_API_KEY=your_anthropic_api_key_here
LLM_MODEL=claude-sonnet-4-20250514
LLM_MAX_TOKENS=4096
# ── Embeddings ────────────────────────────────────────
# Options: "openai" | "local"
EMBEDDING_PROVIDER=openai
OPENAI_API_KEY=your_openai_api_key_here
EMBEDDING_MODEL=text-embedding-3-small
EMBEDDING_BATCH_SIZE=100
# ── Vector DB ─────────────────────────────────────────
CHROMA_PERSIST_DIR=./data/chromadb
CHROMA_COLLECTION_NAME=codebase
# ── Ingestion ─────────────────────────────────────────
REPOS_DIR=./data/repos
MAX_FILE_SIZE_KB=500
# ── API ───────────────────────────────────────────────
API_HOST=0.0.0.0
API_PORT=8000
DEBUG=true