Find answers from the community

Updated 9 months ago

Questions

Hey if I have a an array of a thousand questions and I want to search for similarity to a specific question - what's the best way to approach this? Add the bank to a chromadb with metadata and then do a search?
L
v
13 comments
Yea pretty much πŸ‘
so i make a document out of each question - put the question number/id as the metadata
use a local embedding model to make an index
will this do both vector and bip search?
What is bip search? But otherwise yes
like keyword search
it seems the default vectorstoreindex doesnt have it
i should use chromadb?
Yea combing vector and keyword I usually referred to as hybrid search (at least lately in this space)

Only a few dbs have it built in tbh. Other times you have to setup yourself (coming bm25 with a vector index for example)
used the tutorial to build thx
Add a reply
Sign up and join the conversation on Discord