asg017 / sqlite-vss

A SQLite extension for efficient vector search, based on Faiss!
MIT License
1.59k stars 58 forks source link

Support searching multiple vectors at the same time #109

Open asg017 opened 6 months ago

asg017 commented 6 months ago

From https://github.com/asg017/sqlite-vss/discussions/108 :

select rowid, distance
from foo
where vss_search(bar, json('[[1, 2, 3], [3, 2, 1]]'))
limit 20;

Maybe a JOIN would be better, or bump this up?

dleviminzi commented 6 months ago

I can work on this!

danielagd commented 3 months ago

are there any updates on this issue? am looking for the same functionality!