tinyvector icon indicating copy to clipboard operation
tinyvector copied to clipboard

A tiny embedding database in pure Rust.

Results 8 tinyvector issues
Sort by recently updated
recently updated
newest added

Replace graceful shutdown with code compatible with the new axum version.

Based on #7. Follow the unusual pattern from PUT `/collections/:collection_name`: objects are created by `PUT /place/`. Instead of `POST /collections/:collection_name/insert`, use `PUT /collections/:collection_name/embeddings/:embedding_id`.

Based on #6. * GET /collections - list collection names * GET /collections/:collection_name/embeddings - get embedding identifiers * POST /collections/:collection_name/embeddings - filter embeddings with metadata * DELETE /collections/:collection_name/embeddings - delete...

Add a simple metadata filter based on equality of key-value pairs. * An undefined filter or an empty array matches all embeddings. * An empty object in the array matches...

Hi, Is it possible to provide a minimal embedded use example with cargo crate without server functionality?

This was helpful locally to add a basic level of security (just checking the `API_KEY` env variable for a value & checking bearer)

### Description This PR resolves a compilation error that occurs due to an outdated dependency (`time v0.3.22`). The error happens because the `time` crate has a type inference issue in...