1 2 3 4 5 6 7 8 9 10 11
#![doc = include_str!("../README.md")] //! Erio Context Store - vector storage and semantic search. pub mod config; pub mod error; pub mod store; pub use config::{ContextConfig, HnswConfig, SearchResult, StorageStats}; pub use error::ContextStoreError; pub use store::ContextStore;