http://gothub.r4focoma7gu2zdwwcjjad47ysxt634lg73sxmdbkdozanwqslho5ohyd.onion/unum-cloud/usearch
Base functionality is identical to FAISS, and the interface must be familiar if you have ever investigated Approximate Nearest Neighbors search: # pip install usearch import numpy as np from usearch . index import Index index = Index ( ndim = 3 ) # Default settings for 3D vectors vector = np . array ([ 0.2 , 0.6 , 0.4 ]) # Can be a matrix for batch operations index . add ( 42 , vector ) # Add one or many vectors in parallel matches = index . search ( vector , 10 ) # Find 10 nearest neighbors assert matches...