semtree-store 0.2.1

Vector store trait and backends (usearch)
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod error;
mod store;

#[cfg(feature = "usearch-backend")]
pub mod usearch;

#[cfg(feature = "qdrant-backend")]
pub mod qdrant;

pub use error::StoreError;
pub use store::{Hit, VectorStore};