Is it possible to do batch search in vss_search or vss_range_search? #108
-
Hi, we're using sqlite-vss to search embeddings. I'm wondering if we can pass a list of vectors to vss_search (or vss_range_search), and get back the nearest vectors of each of the passed-in vector? I tried to pass in a list of vectors in
But got back this error:
Is it that I'm doing it incorrectly or sqlite-vss does not support this feature right now? Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
hey, not currently supported. You might be able to do a Faiss has good support for searching multiple vectors at one, I'll see how hard it would be to add. Will track in #109 |
Beta Was this translation helpful? Give feedback.
hey, not currently supported. You might be able to do a
JOIN
and split your input vectors withjson_each()
, but I haven't tested it.Faiss has good support for searching multiple vectors at one, I'll see how hard it would be to add. Will track in #109