sqlite-vec icon indicating copy to clipboard operation
sqlite-vec copied to clipboard

A vector search SQLite extension that runs anywhere!

Results 174 sqlite-vec issues
Sort by recently updated
recently updated
newest added

The `datasette-sqlite-vec` plugin isn't currently registering the plugin hooks correctly. Should be a small fix.

```sql create virtual table vec_movies using vec0( synopsis_embedding float16[768] ); create virtual table vec_movies using vec0( synopsis_embedding bfloat16[768] ); ``` Also `vec_quantize_float16()` / `vec_quantize_bfloat16()`?

enhancement

The only dart/flutter compatible vector db project I am aware of is this: https://github.com/FastCodeAI/DVDB. I was wondering whether this would support Android / IoS / Flutter? Specifically, Flutter has the...

First of all, thanks for the awesome project! I can't find any info about the lowest supported sqlite version. We're trying to integrate sqlite-vec into a rather old codebase that...

I launched support for SQLite Vec in a recent version of Feast but, due to some CI issues, only released it to a subset of Python versions. I was considering...

Hi - thanks for this great project! I was having issues getting it working in Python on my Mac, but succeeded by pip installing [sqlean.py](https://github.com/nalgeon/sqlean.py) and using that rather than...

I'm guessing this version (from the CGO example) is more widely applicable (I ship a `database/sql` driver as well). PS: if you find that all the copies and allocs are...

A new `*_meta` table, key value. Store the minor/patch of the sqlite-vec version, to warn/error when the format has a breaking change.

The goal: offer an API for an in-memory vector store with very fast KNN queries, like Faiss's `IndexFlat`, hnswlib "brute force" index, without storing inside a SQLite database. The current...

enhancement