-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
24 lines (20 loc) · 1.13 KB
/
Copy pathenv.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
# ── RAG x GraphRAG demo — environment ────────────────────────────────────────
# Copy this file to .env and paste your Mistral API key. That key is the ONLY
# thing you need to run the local Docker demo:
#
# cp env.example .env # then edit .env and paste your key
# docker compose up # open http://localhost:8888
# Required — create one at https://console.mistral.ai/
MISTRAL_API_KEY=
# Use the bundled local Qdrant + LightRAG containers (recommended for the demo).
# Set to false only if you want to point the app at your own external services
# (then fill in the QDRANT_*/LIGHTRAG_* block below and run the app without compose).
LOKAL=true
# Optional: chat model for the RAG pipeline's answer step (default below).
# MISTRAL_CHAT_MODEL=mistral-small-latest
# ── Only needed when LOKAL=false (your own external services) ────────────────
# Leave these commented for the local Docker demo.
# QDRANT_URL=https://your-qdrant-host
# QDRANT_API_KEY=
# LIGHTRAG_URL=https://your-lightrag-host
# LIGHTRAG_API_KEY=