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

A SQLite extension for efficient vector search, based on Faiss!

Results 80 sqlite-vss issues
Sort by recently updated
recently updated
newest added

Current message states that SQLite version needs to be below 3.41.0 for 2nd parameter when in fact it needs to be at or above. * Change messaging to be at...

Is there anything about the extension that would make it incompatible with the sqlite WAL? When I have WAL enabled, there seems to be data missing from my index. I'll...

In dotnet there's this thing called _"Connection Pooling"_ that will reuse the same connection for multiple threads. It's an optimisation thing for ASP.NET and web apps. If I turn it...

- [ ] Deprecate: - [ ] `vector_from_blob` - [ ] `vector_to_blob` - [ ] `VECTOR_BLOB_HEADER_BYTE` and alike - [ ] fix/re-think: - [ ] `xValueAsVector` - maybe output a...

`sqlite3_vss_init` requires the vector plugin to have been initialised before initialising the VSS plugin. The following statement fails in fact. ``` // TODO: The && false parts needs to be...

The way I've understood the lib, it's reading the same `faiss::Index` from the database's shadow table every single time a connection is created. This of course has dramatic repercussions for...

Following your recipe to the last detail, and nothing seems to work. It give me ... ``` This file contains any messages produced by compilers while running configure, to aid...

Do you have any issues using the new Go bindings for `sqlite-vss`? Comment on this issue with any bugs or crashes you come across, or with suggestions on how to...

`sqlite-vss.cpp` and `sqlite-vector.cpp` have many memory leaks that need to be cleaned up. There are a few reasons why: - SQLite's extension API handles memory and lifetime of certain items...

I'd like to bundle `sqlite-vss` as an Elixir package and distribute it on [hex](https://hex.pm/). Ideally Elixir developers should be able to run: ```bash mix deps.get sqlite-vss ``` ## Existing Language...