View Source ExOpenAI.Components.ChatCompletionTokenLogprob (ex_openai.ex v1.7.0)

Schema representing a ChatCompletionTokenLogprob within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.ChatCompletionTokenLogprob{
  bytes: [integer()],
  logprob: float(),
  token: String.t(),
  top_logprobs: [%{bytes: [integer()], logprob: float(), token: String.t()}]
}