Optional
logprobsOptional
maxLimit the number of tokens generated.
Optional
modelThe name of the model to query.
Optional
modelThe name of the model to query.
Alias for model
Optional
repetitionA number that controls the diversity of generated text by reducing the likelihood of repeated sequences. Higher values decrease repetition.
{1}
Optional
safetyRun an LLM-based input-output safeguard model on top of any model.
Optional
stopA list of tokens at which the generation should stop.
Optional
temperatureA decimal number that determines the degree of randomness in the response. A value of 1 will always yield the same output. A temperature less than 1 favors more correctness and is appropriate for question answering or summarization. A value greater than 1 introduces more randomness in the output.
{0.7}
Optional
topKThe topK
parameter is used to limit the number of choices for the next predicted word or token.
It specifies the maximum number of tokens to consider at each step, based on their probability of occurrence.
This technique helps to speed up the generation process and can improve the quality of the generated text by focusing on the most likely options.
{50}
Optional
topPThe topP
(nucleus) parameter is used to dynamically adjust the number of choices for each predicted token based on the cumulative probabilities.
It specifies a probability threshold, below which all less likely tokens are filtered out.
This technique helps to maintain diversity and generate more fluent and natural-sounding text.
{0.7}
Generated using TypeDoc
An integer that specifies how many top token log probabilities are included in the response for each token generation step.