-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 863 Bytes
/
.env.example
File metadata and controls
27 lines (22 loc) · 863 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
# Required: API key for LLM access
OPENAI_API_KEY="<YOUR_OPENAI_API_KEY>"
# Optional: Evolve Backend Configuration (default: filesystem)
# EVOLVE_BACKEND=filesystem # Options: filesystem, postgres, milvus
# EVOLVE_NAMESPACE_ID=evolve
# Optional: LLM Configuration
# EVOLVE_MODEL_NAME=gpt-4o
# EVOLVE_CUSTOM_LLM_PROVIDER=openai
# OPENAI_BASE_URL=https://api.openai.com/v1
# Optional: Advanced Settings
# EVOLVE_CLUSTERING_THRESHOLD=0.80
# Optional: Postgres backend (requires: pip install altk-evolve[pgvector])
# EVOLVE_BACKEND=postgres
# EVOLVE_PG_HOST=127.0.0.1
# EVOLVE_PG_PORT=5432
# EVOLVE_PG_USER=postgres
# EVOLVE_PG_PASSWORD=postgres # pragma: allowlist secret
# EVOLVE_PG_DBNAME=evolve
# EVOLVE_PG_AUTO_CREATE_DB=true
# EVOLVE_PG_BOOTSTRAP_DB=postgres
# Optional: Milvus backend (requires: pip install altk-evolve[milvus])
# EVOLVE_BACKEND=milvus