llmwiki-serve 0.2.10
This release adds the opt-in SQLite GraphStore path for derived graph snapshots while keeping the default install and serving behavior backward-compatible.
Highlights:
- Optional SQLite GraphStore enabled at runtime with
--graph-store sqlite --graph-store-path <outside-root.sqlite>. - No new install extra for GraphStore; the base package uses Python's standard
sqlite3module. - Existing
[vector]and[redis]extras remain separate opt-ins for semantic retrieval and Redis/Valkey projection reuse. /graph,/graph/neighborhood,llmwiki_graph, andllmwiki_graph_neighborspreserve existing response contracts while using GraphStore when configured.- Adds release gates and docs for visibility-scoped cache isolation, invalidation, fallback/fail-fast behavior, and future PostgreSQL SQL/PGQ re-evaluation.
Install:
uv tool install llmwiki-serve==0.2.10SQLite GraphStore example:
llmwiki-serve serve ./wiki \
--graph-store sqlite \
--graph-store-path ../.llmwiki-cache/wiki-graph.sqlite