Files
clawhdf5/crates/clawhdf5-ann
osobhandClaude Fable 5.1 0876796432 chore(release): v2.3.0
Bump all workspace crates, the node package and pyproject to 2.3.0, finalize
the changelog and add upgrade notes for the behaviour changes.

Co-Authored-By: Claude Fable 5.1 <[email protected]>
2026-09-19 07:19:11 -07:00
..
2026-09-19 07:19:11 -07:00

clawhdf5-ann

crates.io docs.rs

HNSW approximate nearest neighbor index stored as HDF5.

Features

  • Build and query HNSW indexes persisted in HDF5 format
  • Pure Rust, no C dependencies
  • Efficient similarity search for high-dimensional vectors

Usage

use clawhdf5_ann::HnswIndex;

let index = HnswIndex::from_hdf5("vectors.h5").unwrap();
let neighbors = index.search(&query, 10);

License

MIT