Semantic search does not guarantee that documents ...
# community-help
k
Semantic search does not guarantee that documents with the exact phrase will show up at the top. When you represent a large document with a bunch of float values, you are representing the ideas in the text, which might not directly map to the given phrase. To overcome this limitation, you can use hybrid search, where the results from both keyword and semantic search are combined.
👀 1