Expand description
Local FTS5 retrieval provider.
Implements deterministic, tiered retrieval over the SQLite FTS5 index: pins first (non-evictable), then the current capsule summary, then BM25- ranked candidates normalised to [0, 1].
The public surface mirrors LocalFtsProvider in
packages/kindling-provider-local and the retrieval orchestrator in
packages/kindling-core/src/retrieval/orchestrator.ts — identical queries
against the same database produce the same ranked results.
Structs§
- Local
FtsProvider - FTS5 + recency retrieval over a kindling SQLite database.
Enums§
- Provider
Error - Errors produced by the retrieval provider and orchestrator.
Traits§
- Retrieval
Provider - A retrieval provider: named source of ranked search results.
Functions§
- retrieve
- Retrieve relevant context for a query, scored as of the current time.
- retrieve_
at - Retrieve relevant context for a query, scored as of
now(epoch ms).