Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 1.44 KB

CreateSearchRequest.md

File metadata and controls

16 lines (11 loc) · 1.44 KB

CreateSearchRequest

Properties

Name Type Description Notes
query String Query to search against the documents.
documents Option<Vec> Up to 200 documents to search over, provided as a list of strings. The maximum document length (in tokens) is 2034 minus the number of tokens in the query. You should specify either documents or a file, but not both. [optional]
file Option<String> The ID of an uploaded file that contains documents to search over. You should specify either documents or a file, but not both. [optional]
max_rerank Option<i32> The maximum number of documents to be re-ranked and returned by search. This flag only takes effect when file is set. [optional][default to 200]
return_metadata Option<bool> A special boolean flag for showing metadata. If set to true, each document entry in the returned JSON will contain a "metadata" field. This flag only takes effect when file is set. [optional][default to false]
user Option<String> A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. Learn more. [optional]

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