init: LightRAG + Graphiti as submodules with Nix flake

Impure devShells using uv + Python 3.12 for each project.
LD_LIBRARY_PATH set for NixOS native wheel compatibility.
Neo4j managed via nix run .#neo4j-start / neo4j-stop.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-19 12:18:32 +08:00
commit 17fbeffac1
8 changed files with 186 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# LLM via Ollama
LLM_BINDING=ollama
LLM_MODEL=qwen2.5:7b
LLM_BINDING_HOST=http://localhost:11434
# Embeddings via Ollama
EMBEDDING_BINDING=ollama
EMBEDDING_MODEL=nomic-embed-text
EMBEDDING_BINDING_HOST=http://localhost:11434
EMBEDDING_DIM=768
# Storage (local files)
RAG_DIR=./rag_storage
# Server
HOST=0.0.0.0
PORT=9621
WORKERS=1