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

Emitted when there is a partial transcript of audio.

Fields

  • :delta - required - String.t()
    The partial transcript of the audio response.

  • :sequence_number - required - integer()
    The sequence number of this event.

  • :type - required - :"response.audio.transcript.delta"
    The type of the event. Always response.audio.transcript.delta.
    Allowed values: "response.audio.transcript.delta"

Summary

Types

@type t() :: %ExOpenAI.Components.ResponseAudioTranscriptDeltaEvent{
  delta: String.t(),
  sequence_number: integer(),
  type: :"response.audio.transcript.delta"
}