Vector
Methods related to CRUD operations within a collection.
delete() [READ MORE]
This operation deletes entities by their IDs or with a boolean expression.
get() [READ MORE]
This operation gets specific entities by their IDs.
insert() [READ MORE]
This operation inserts data into a specific collection.
query() [READ MORE]
This operation conducts a scalar filtering with a specified boolean expression.
query_iterator() [READ MORE]
This operation conducts a scalar filtering with a specified boolean expression in an iterative manner.
search() [READ MORE]
This operation conducts a vector similarity search with an optional scalar filtering expression.
search_iterator() [READ MORE]
This operation conducts a vector similarity search with an optional scalar filtering expression in an iterative manner.
upsert() [READ MORE]
This operation inserts or updates data in a specific collection.
hybrid_search() [READ MORE]
This operation performs multi-vector search on a collection and returns search results after reranking.
GroupBy [READ MORE]
A `GroupBy` instance defines one bucket level in a search aggregation. It specifies which fields form the bucket key, how many buckets to return, which metrics to compute for each bucket, how to order buckets, whether to return representative hits, and whether to create nested child buckets.
TopHits [READ MORE]
A `TopHits` instance defines the representative hits returned from each bucket in a search aggregation. It specifies how many hits to return per bucket and, optionally, how to sort hits within each bucket.