logprobs method
Enables or disables log probabilities
Whether to return log probabilities of the output tokens. If true, returns the log probabilities of each output token.
Implementation
OpenAIBuilder logprobs(bool enabled) {
_baseBuilder.extension('logprobs', enabled);
return this;
}