-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (26 loc) · 1.54 KB
/
.env.example
File metadata and controls
35 lines (26 loc) · 1.54 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
27
28
29
30
31
32
33
34
35
# Kairix environment configuration
# Copy this file: cp .env.example .env
# Then edit with your credentials.
# Fields marked REQUIRED must be set before starting kairix.
# ── LLM Provider ────────────────────────────────────────────────────────────
# REQUIRED — your LLM API key and endpoint
KAIRIX_LLM_ENDPOINT=https://your-resource.openai.azure.com
KAIRIX_LLM_API_KEY=your-api-key-here
# OPTIONAL — override model names (sensible defaults used otherwise)
# KAIRIX_LLM_MODEL=gpt-4o-mini
# OPTIONAL — separate embed provider (falls back to LLM provider if not set)
# KAIRIX_EMBED_API_KEY=your-embed-api-key
# KAIRIX_EMBED_ENDPOINT=https://openrouter.ai/api/v1
# KAIRIX_EMBED_MODEL=qwen/qwen3-embedding-8b
# KAIRIX_EMBED_DIMS=4096
# OPTIONAL — Azure API version (default: 2024-12-01-preview)
# KAIRIX_AZURE_API_VERSION=2024-12-01-preview
# ── Neo4j (optional — knowledge graph for people/company queries) ────────────
# OPTIONAL — set a strong password for your Neo4j instance
KAIRIX_NEO4J_PASSWORD=
# ── Kairix paths (defaults work with Docker Compose) ─────────────────────────
# KAIRIX_DOCUMENT_ROOT=/data/vault # Document store root inside container
# (KAIRIX_VAULT_ROOT still works but is deprecated)
# On host, symlink your documents: ln -s ~/my-notes ./documents
# OPTIONAL — has sensible defaults
# KAIRIX_DB_PATH=/data/kairix/index.sqlite