Start with Vector
Perform queries that can be resumed to fetch additional results.
Resumable queries allow you to fetch results in batches, which is useful for large result sets or when you want to implement pagination.
Request
The query vector
The total number of the vectors that you want to receive as a query result.
The response will be sorted based on the distance metric score, and at most
topK
many vectors will be returned.
Whether to include the metadata of the vectors in the response, if any. It is
recommended to set this to true
to easily identify vectors.
Whether to include the vector values in the response. It is recommended to set
this to false
as the vector values can be quite big, and not needed most of
the time.
Whether to include the data of the vectors in the response, if any.
Metadata filter to apply.
Maximum idle time for the resumable query in seconds.
Path
The namespace to use. When no namespace is specified, the default namespace will be used.
Response
A unique identifier for the resumable query.
The id of the vector.
The similarity score of the vector, calculated based on the distance metric of your index.
The vector value.
The metadata of the vector, if any.
The unstructured data of the vector, if any.
Was this page helpful?