File size: 372 Bytes
bdb278a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | //! # Index Adapters
//!
//! Implementations of the Near port for different index backends.
//!
//! Available adapters:
//! - `FlatIndex` - Brute force search (exact, slow for large N)
//! - `HnswIndex` - Hierarchical Navigable Small World (approximate, fast) [TODO]
mod flat;
pub use flat::FlatIndex;
// TODO: Add HNSW adapter
// mod hnsw;
// pub use hnsw::HnswIndex;
|