The query vector to search for. Only a single query vector is
supported per call - Milvus's underlying API also accepts a batch
(number[][]) that returns one result set per query vector, but that
shape isn't wrapped here; use getClient().search(...) directly for
batched multi-vector search.
OptionalannsName of the vector field to search. Required if the collection has more than one vector field.
OptionallimitMax number of nearest neighbors to return per query vector.
OptionalfilterScalar filter expression narrowing candidates before/while ranking (Milvus's boolean expression language, e.g. 'age > 21 && category == "b"').
OptionaloutputOptionalpartitionOptionalmetricOptionaloffset
Options for
search().