AudioTranscriptionDelay enum

Transcription latency-vs-accuracy delay knob.

Higher values trade latency for accuracy. Only supported with gpt-realtime-whisper in Realtime sessions.

Unknown values from fromJson throw FormatException, matching the existing convention used by other realtime enums.

Inheritance
Available extensions

Values

minimal → const AudioTranscriptionDelay

Lowest latency, lowest accuracy.

const AudioTranscriptionDelay._('minimal')
low → const AudioTranscriptionDelay

Low transcription delay.

const AudioTranscriptionDelay._('low')
medium → const AudioTranscriptionDelay

Medium transcription delay.

const AudioTranscriptionDelay._('medium')
high → const AudioTranscriptionDelay

High transcription delay.

const AudioTranscriptionDelay._('high')
xhigh → const AudioTranscriptionDelay

Highest latency, highest accuracy.

const AudioTranscriptionDelay._('xhigh')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
Converts to JSON string.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<AudioTranscriptionDelay>
A constant List of the values in this enum, in order of their declaration.