Entrypoint and core classes for the client.
-
Retrieves all documents in the collection.
Collection.find(float[] vector,
int limit)
Finds documents in the collection that match the specified filter and sorts them based on their similarity
to a provided vector, limiting the number of results returned.
Retrieves documents in the collection that match the specified filter.
Collection.find(Filter filter,
float[] vector,
int limit)
Finds documents in the collection that match the specified filter and sorts them based on their similarity
to a provided vector, limiting the number of results returned.
Finds all documents in the collection.
Finds documents in the collection that match the specified filter and sorts them based on their similarity
to a provided vector, limiting the number of results returned.
Finds all documents in the collection, applying the specified find options.