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

Returned when a transcription session is updated with a transcription_session.update event, unless there is an error.

Fields

  • :event_id - required - String.t()
    The unique ID of the server event.

  • :session - required - ExOpenAI.Components.RealtimeTranscriptionSessionCreateResponse.t()

  • :type - required - :"transcription_session.updated"
    The event type, must be transcription_session.updated.
    Allowed values: "transcription_session.updated"

Summary

Types

@type t() :: %ExOpenAI.Components.RealtimeServerEventTranscriptionSessionUpdated{
  event_id: String.t(),
  session: ExOpenAI.Components.RealtimeTranscriptionSessionCreateResponse.t(),
  type: :"transcription_session.updated"
}