Skip to main content

kevy_vector/
lib.rs

1//! kevy-vector — ANN core (RFC 2026-07-04, LOCKED): HNSW graph with
2//! cosine / L2 / inner-product distances, tombstone deletes filtered
3//! at search time, bounded full rebuild.
4
5#![warn(missing_docs)]
6
7mod dist;
8mod hnsw;
9
10pub use dist::{Distance, parse_vector};
11pub use hnsw::{Hnsw, HnswParams, VectorStats};