sevensense-vector 0.1.0

Vector database operations and HNSW indexing for 7sense bioacoustics platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Infrastructure layer for the Vector Space bounded context.
//!
//! Contains:
//! - HNSW index implementation
//! - Graph storage adapters
//! - Persistence implementations

pub mod hnsw_index;
pub mod graph_store;

pub use hnsw_index::HnswIndex;
pub use graph_store::InMemoryGraphStore;