pub struct ChatCompletionTokenLogprob {
pub token: String,
pub logprob: f64,
pub bytes: Option<Vec<u64>>,
pub top_logprobs: Vec<ChatCompletionTokenLogprobTopLogprob>,
}
Fields§
§token: String
The token.
logprob: f64
The log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value -9999.0
is used to signify that the token is very unlikely.
bytes: Option<Vec<u64>>
A list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be null
if there is no bytes representation for the token.
top_logprobs: Vec<ChatCompletionTokenLogprobTopLogprob>
List of the most likely tokens and their log probability, at this token position. In rare cases, there may be fewer than the number of requested top_logprobs
returned.
Implementations§
Source§impl ChatCompletionTokenLogprob
impl ChatCompletionTokenLogprob
Sourcepub fn builder() -> ChatCompletionTokenLogprobBuilder<((), (), (), ())>
pub fn builder() -> ChatCompletionTokenLogprobBuilder<((), (), (), ())>
Create a builder for building ChatCompletionTokenLogprob
.
On the builder, call .token(...)
, .logprob(...)
, .bytes(...)
(optional), .top_logprobs(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ChatCompletionTokenLogprob
.
Trait Implementations§
Source§impl Clone for ChatCompletionTokenLogprob
impl Clone for ChatCompletionTokenLogprob
Source§fn clone(&self) -> ChatCompletionTokenLogprob
fn clone(&self) -> ChatCompletionTokenLogprob
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more