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.
search() [READ MORE]
This operation conducts a vector similarity search with an optional scalar filtering expression.
search_iterator() [READ MORE]
This operation returns a Python iterator for you to iterate over the search results. It is useful especially when the search result contains a large volume of data.
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.