RealtimeReasoningEffort enum

Reasoning effort levels for reasoning-capable Realtime models.

Constrains the amount of reasoning the model performs before responding, trading latency for quality. Currently applies only to reasoning Realtime models such as gpt-realtime-2.

Unknown values from fromJson throw FormatException, matching the package's existing enum convention.

Inheritance
Available extensions

Values

minimal → const RealtimeReasoningEffort

Minimal reasoning. Lowest latency.

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

Low reasoning effort.

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

Medium reasoning effort.

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

High reasoning effort.

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

Extra-high reasoning effort.

const RealtimeReasoningEffort._('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<RealtimeReasoningEffort>
A constant List of the values in this enum, in order of their declaration.