nvs-core 0.1.0

Native Vector Store (Rust) core: bundle format, mmap reader, vector/BM25/hybrid search
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod bm25;
pub mod bundle;
pub mod errors;
pub mod hybrid;
pub mod manifest;
pub mod search;
pub mod simd;
pub use crate::bm25::tokenizer;
pub mod chunker;
pub mod vector_store;

pub use bundle::Bundle;
pub use vector_store::VectorStore;