Skip to content

llmwiki-serve v0.2.10

Latest

Choose a tag to compare

@HwangJohn HwangJohn released this 18 Aug 13:02
daa7a93

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 sqlite3 module.
  • Existing [vector] and [redis] extras remain separate opt-ins for semantic retrieval and Redis/Valkey projection reuse.
  • /graph, /graph/neighborhood, llmwiki_graph, and llmwiki_graph_neighbors preserve 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.10

SQLite GraphStore example:

llmwiki-serve serve ./wiki \
  --graph-store sqlite \
  --graph-store-path ../.llmwiki-cache/wiki-graph.sqlite