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

I'm using node version of `sqlite-vss`, an running it causes following error: ```sh libc++abi: terminating due to uncaught exception of type faiss::FaissException: Error in virtual void faiss::IndexFlat::search(idx_t, const float *,...

iOS doesn't allow for dynamic libraries and things need to be static linked. Has anyone done the work to get this working in that environment?

Thanks for this library. I'm just playing around with it to see if it can fit in as a replacement for the myriad user-defined sql functions we're currently using to...

I'm dumping some raw bytes into a `vector` column, but when sqlite-vss parses the BLOB into a vector, it checks if it starts with a `v\x01` and if so, these...

When a process adds a row to a vss table, any other process that has already connected to the same database will get the following error when accessing the newly...

Example in npm readme for sqlite3 does not work for me using m1 and yarn This is the working setup for me ```js import sqlite3 from "sqlite3"; import * as...

``` # ubuntu 23.04/ ; python 3.11 ----------- import sqlite3 import sqlite_vss db = sqlite3.connect(':memory:') db.enable_load_extension(True) sqlite_vss.load(db) ------------- ``` Error: **Process finished with exit code 132 (interrupted by signal 4:...

``` deno --version deno 1.39.1 (release, aarch64-apple-darwin) v8 12.0.267.8 typescript 5.3.3 ``` Running example from README https://github.com/asg017/sqlite-vss?tab=readme-ov-file#deno ``` Warning Implicitly using latest version (v0.1.2) for https://deno.land/x/sqlite_vss/mod.ts error: Uncaught (in promise)...