Finds the k closes neighbors of each instance of embeddings.
find_neighbors(
self,
embeddings: list[list[float]],
k: int = 4,
filter_: list[Namespace] | dict | None = None,
numeric_filter: list[NumericNamespace] | None = None,
*,
sparse_embeddings: list[dict[str, list[int] | list[float]]] | None = None,
rrf_ranking_alpha: float = 1,
**kwargs: Any = {}
) -> list[list[dict[str, Any]]]