View Source ExOpenAI.Components.ChatCompletionList (ex_openai.ex v1.8.0)

Schema representing a ChatCompletionList within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.ChatCompletionList{
  data: [ExOpenAI.Components.CreateChatCompletionResponse.t()],
  first_id: String.t(),
  has_more: boolean(),
  last_id: String.t(),
  object: :list
}