View Source ExOpenAI.Components.OutputAudio (ex_openai.ex v2.0.0-beta2)

An audio output from the model.

Fields

  • :data - required - String.t()
    Base64-encoded audio data from the model.

  • :transcript - required - String.t()
    The transcript of the audio data from the model.

  • :type - required - :output_audio
    The type of the output audio. Always output_audio.
    Allowed values: "output_audio"

Summary

Types

@type t() :: %ExOpenAI.Components.OutputAudio{
  data: String.t(),
  transcript: String.t(),
  type: :output_audio
}