I am having a hard time to get semantic search to ...
# community-help
s
I am having a hard time to get semantic search to work 1. I have a collection where one field is a vector (done with the inbuilt OPENAI support) 2. I have one of thousands of documents that has the exact string
3028uyt0fijew9ungv
(imaginary value just to depict the usecase) 3. I run a search for
3028uyt0fijew9ungv
and return the 3 top most results - none of which are my document I expect it to return as the top most, since it has that exact string in it. Note, of course in the IRL case, the string is not such a unique value but rather a phrase. I do understand semantic search will do a similarity search.. but what use is it, if the actual top most result, that has the EXACT value the user looking for, is not returned? I mean, similar results > all cool. But similar results without the actual "hey we have EXACTLY what you are looking for!" is nonsense. I am sure I miss something?