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
Cosine similarity score (1.0 for metadata-only queries)
[optional]
metadata
Dict[str, object]
[optional]
embedding
List[float]
Vector embedding (only if includeEmbeddings=true)
[optional]
Example
fromquantcdn.models.query_vector_collection200_response_results_innerimportQueryVectorCollection200ResponseResultsInner# TODO update the JSON string belowjson="{}"# create an instance of QueryVectorCollection200ResponseResultsInner from a JSON stringquery_vector_collection200_response_results_inner_instance=QueryVectorCollection200ResponseResultsInner.from_json(json)
# print the JSON string representation of the objectprint(QueryVectorCollection200ResponseResultsInner.to_json())
# convert the object into a dictquery_vector_collection200_response_results_inner_dict=query_vector_collection200_response_results_inner_instance.to_dict()
# create an instance of QueryVectorCollection200ResponseResultsInner from a dictquery_vector_collection200_response_results_inner_from_dict=QueryVectorCollection200ResponseResultsInner.from_dict(query_vector_collection200_response_results_inner_dict)