You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If true, skip semantic search and return all documents matching the filter. Requires filter. Supports cursor pagination.
[optional] [default to False]
cursor
str
Pagination cursor for listByMetadata mode. Use nextCursor from previous response. Opaque format - do not construct manually.
[optional]
sort_by
str
Field to sort by in listByMetadata mode
[optional] [default to 'created_at']
sort_order
str
Sort direction in listByMetadata mode
[optional] [default to 'desc']
Example
fromquantcdn.models.query_vector_collection_requestimportQueryVectorCollectionRequest# TODO update the JSON string belowjson="{}"# create an instance of QueryVectorCollectionRequest from a JSON stringquery_vector_collection_request_instance=QueryVectorCollectionRequest.from_json(json)
# print the JSON string representation of the objectprint(QueryVectorCollectionRequest.to_json())
# convert the object into a dictquery_vector_collection_request_dict=query_vector_collection_request_instance.to_dict()
# create an instance of QueryVectorCollectionRequest from a dictquery_vector_collection_request_from_dict=QueryVectorCollectionRequest.from_dict(query_vector_collection_request_dict)