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

Schema representing a OutputMessage within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.OutputMessage{
  content: [ExOpenAI.Components.OutputContent.t()],
  id: String.t(),
  role: :assistant,
  status: :incomplete | :completed | :in_progress,
  type: :message
}