A
B
C
D
F
G
L
M
P
S
T
G
- getBuilder() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- The builder used to configure the chat request parameters.
- getCause() - function in dev.langchain4j.kotlin.model.chat.StreamingChatModelReply.Error
- The underlying exception or error that caused the failure.
- getFrequencyPenalty() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- Applies a penalty to discourage repetition of tokens based on frequency.
- getMaxOutputTokens() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- Specifies the maximum number of tokens for the generated response.
- getMessages() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestBuilder
- getModelName() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- Specifies the name of the model to be used for the chat request.
- getParameters() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestBuilder
- getPartialResponse() - function in dev.langchain4j.kotlin.model.chat.StreamingChatModelReply.PartialResponse
- The partial response, usually a single token, but might be more, which is a part of the complete response.
- getPresencePenalty() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- Applies a penalty to encourage diversity by penalizing token presence in the conversation context.
- getResponse() - function in dev.langchain4j.kotlin.model.chat.StreamingChatModelReply.CompleteResponse
- The final chat response generated by the model.
- getResponseFormat() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- Specifies the format of the response, such as plain text or structured data.
- getStopSequences() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- A list of sequences that will terminate the response generation if encountered.
- getTemperature() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- Controls the randomness in the response generation.
- getToolChoice() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- Defines the specific tool to be used if multiple tools are available in the request.
- getToolSpecifications() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- A list of tool specifications for integrating external tools into the chat request.
- getTopK() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- Limits the selection to the top
Ktokens during response generation. - getTopP() - function in dev.langchain4j.kotlin.model.chat.request.ChatRequestParametersBuilder
- Configures nucleus sampling, limiting the selection to a subset of tokens with a cumulative probability of
topP.