...
(Optional, UUID) The credentials ID for the search engine
connectTimeout
(Optional, Duration) The maximum time in Duration notation it takes to establish a connection to the server. Defaults to 30 seconds
.
readTimeout
(Optional, Duration) The maximum time in Duration notation to wait for the server to send a response. Defaults to 10 seconds
.
writeTimeout
(Optional, Duration) The maximum time in Duration notation to wait for the client to write the request to the server. Defaults to 10 seconds
.
...
Elastic
Post requests to a given Elasticsearch instance using the official Java API (High level REST client).
...
(Optional, String) The Open AI chat completion model to use in requests, defaults to gpt-3.5-turbo
. The model to use can be overriden if there is a query parameter chatCompletionModel
in the request, in which case the query parameter's value will be used.
temperature
(Optional, Double) What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. Defaults to 0.
topP
(Optional, Double) An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. Defaults to 1.
It is recommended to alter the temperature or topP but not both.
timeout
(Optional, String) The timeout on embeddings requests. Expressed in Duration
notation, defaults to PT120S
...