Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 1.13 KB

VectorSearchQueryRequest.md

File metadata and controls

15 lines (12 loc) · 1.13 KB

# VectorSearchQueryRequest

Properties

Name Type Description Notes
fields string[] List of extra fields to be retrieved. [optional]
filters \Wordlift\Client\Model\Filter[] A list of prefilters. [optional]
query_embedding float[] The list of embeddings, not required if `query_string` is provided. [optional]
query_string string The query string, not required if the `query_embeddings` are provided. Please note that the `query_string` is ignored if the `query_embeddings` are provided. [optional]
query_uri string Perform a Vector Search based on similarities with an entity with the specified URI. [optional]
query_url string Perform a Vector Search based on similarities with an entity with the specified URL (schema:url). [optional]
similarity_top_k int The similarity top K. [optional] [default to 2]

[Back to Model list] [Back to API list] [Back to README]