Module store

Module store 

Source
Expand description

Storage abstraction for Context Harness.

The Store trait defines all storage operations needed by the core search and retrieval pipeline, enabling pluggable backends (SQLite, in-memory, future WASM-compatible stores).

Implementations must be Send + Sync to work with async runtimes.

Modules§

memory
In-memory Store implementation for testing and WASM targets.

Structs§

ChunkCandidate
A candidate chunk returned from keyword or vector search.
ChunkResponse
A single chunk within a DocumentResponse.
DocumentMetadata
Lightweight document metadata for search result enrichment.
DocumentResponse
Full document response including metadata, body, and chunks.

Traits§

Store
Abstract storage backend for Context Harness.