Using vector search in Windows #2124
-
I was able to follow the steps for building On Windows, I was able to build I wanted to know if anyone has tried using vector search on Please let me know if you need more information. Error: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@deepakbkar I believe this has to do with the DLL you've built using faiss. You must make sure you checkout the advertised version of faiss to build the dynamic library - https://github.com/blevesearch/bleve/blob/master/docs/vectors.md#pre-requisites The code the error calls out is only available in the blevesearch org's fork of faiss. |
Beta Was this translation helpful? Give feedback.
I did use the advertised version.
I was finally able to make this work by using
-DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON
flag when buildingfaiss
libraries on Windows. I found this while looking at other C# wrappers created to usefaiss
on Windows.I am marking this as an answer for the original question.