Skip to main content

erio_context_store/
lib.rs

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