-
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.19 KB
/
Copy path.env.example
File metadata and controls
26 lines (20 loc) · 1.19 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
# ─── Qdrant Vector Database ──────────────────────────────────
QDRANT_HOST=127.0.0.1
QDRANT_PORT=6336
QDRANT_API_KEY=your_qdrant_api_key_here
QDRANT_HTTPS=False
# ─── Embedding Service ───────────────────────────────────────
# Set to True for local FastEmbed, False for Voyage AI
USE_LOCAL_EMBEDDER=True
# Local FastEmbed HTTP service
EMBEDDING_SERVICE_HOST=127.0.0.1
EMBEDDING_SERVICE_PORT=8001
# Voyage AI (required when USE_LOCAL_EMBEDDER=False)
VOYAGE_API_KEY=your_voyage_api_key_here
# ─── Data Storage ────────────────────────────────────────────
DATASET_STORAGE_PATH=./data/datasets
PREDICTION_LOG_PATH=./data/predictions
# ─── Logging ─────────────────────────────────────────────────
RUST_LOG=info
# ─── Redis (used by docker-compose) ─────────────────────────
REDIS_URL=redis://redis:6379