Rust core · Python bindings
Approximate nearest-neighbour search with a quantization core in Rust, exposed through a Python API you can import in one line.
from turbovec import Index # build over your embeddings idx = Index(dim=768, metric="cosine") idx.add(vectors) # query in Rust, return in Python hits = idx.search(query, k=10)
TurboQuant compresses vectors so the index stays small and the recall stays honest.
The fast path lives in Rust. The API lives where your pipeline already is.
No server to run, no cluster to babysit. An index you embed inside your process.