A lightweight, lightning-fast, in-process vector database.
import zvec db = zvec.Index(dim=768) db.add(ids, embeddings) # no server hits = db.search( query_vec, k=5, ) for id, score in hits: print(id, score)
Embedded in your application process — no daemon, no ports, no ops. Just import and index.
A small footprint meant to sit beside your model code, not a cluster to operate alongside it.
In-memory similarity search tuned to keep retrieval off the critical path of your app.