Skip to main content

astraea_vector/
lib.rs

1//! AstraeaDB Vector Index crate.
2//!
3//! Provides HNSW (Hierarchical Navigable Small World) based approximate
4//! nearest-neighbor search for the Vector-Property Graph model.
5
6pub mod distance;
7pub mod hnsw;
8pub mod index;
9pub mod persistence;
10
11pub use index::HnswVectorIndex;