astraea-vector 0.3.1

HNSW-based approximate nearest-neighbor vector index for AstraeaDB's vector-property graph model.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! AstraeaDB Vector Index crate.
//!
//! Provides HNSW (Hierarchical Navigable Small World) based approximate
//! nearest-neighbor search for the Vector-Property Graph model.

pub mod distance;
pub mod hnsw;
pub mod index;
pub mod persistence;

pub use index::HnswVectorIndex;