File size: 1,317 Bytes
22fd41f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ─── Google Gemini (LLM for answer generation) ────────────────────────────────
GEMINI_API_KEY=your_gemini_api_key_here

# ─── NVIDIA (Embeddings) ──────────────────────────────────────────────────────
NVIDIA_API_KEY=nvapi-your_nvidia_api_key_here

# ─── Vector Store ─────────────────────────────────────────────────────────────
CHROMA_DB_PATH=./chroma_db
COLLECTION_NAME=sacred_texts

# ─── Retrieval Settings ───────────────────────────────────────────────────────
# Chunks retrieved PER BOOK β€” every scripture gets this many slots guaranteed
# Total context = CHUNKS_PER_BOOK x number of books (e.g. 3 x 4 = 12 chunks)
CHUNKS_PER_BOOK=3

# ─── Server ───────────────────────────────────────────────────────────────────
HOST=0.0.0.0
PORT=8000