You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
I have compiled the HNSW gRPC server with MinGW 64 so that I could possibly test it out.
Building the serve seems to have gone well, but now do you have some examples on how I can connect to it and make some basic testing for its functionality like in the API calls:
CreateIndex | Make a new index
DeleteIndex | Removes an index
InsertVector | Insert a new vector in the given index, letting the index generate an ID
InsertVectors | Insert new vectors in the given index, with generated ID, then flush the index
InsertVectorWithId | Insert a new vector with given ID in the given index
InsertVectorsWithId | Insert new vectors with given IDs in the given index, then flush the index
SearchKNN | Return the top k nearest neighbors to the query, searching on the given index
FlushIndex | Serialize the index to file
Indices | Return the list of indices
SetEf | Set the ef parameter for the given index
The text was updated successfully, but these errors were encountered:
Hello,
I have compiled the HNSW gRPC server with MinGW 64 so that I could possibly test it out.
Building the serve seems to have gone well, but now do you have some examples on how I can connect to it and make some basic testing for its functionality like in the API calls:
The text was updated successfully, but these errors were encountered: