LifeGuide / env.example
Shouvik599
Initial clean commit
22fd41f
# ─── 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