Package com.openai.models.responses
Class ResponseCodeInterpreterCallInterpretingEvent
-
- All Implemented Interfaces:
public final class ResponseCodeInterpreterCallInterpretingEvent
Emitted when the code interpreter is actively interpreting the code snippet.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ResponseCodeInterpreterCallInterpretingEvent.Builder
A builder for ResponseCodeInterpreterCallInterpretingEvent.
-
Method Summary
Modifier and Type Method Description final ResponseCodeInterpreterToolCall
codeInterpreterCall()
A tool call to run code. final Long
outputIndex()
The index of the output item that the code interpreter call is in progress. final JsonValue
_type()
The type of the event. final JsonField<ResponseCodeInterpreterToolCall>
_codeInterpreterCall()
A tool call to run code. final JsonField<Long>
_outputIndex()
The index of the output item that the code interpreter call is in progress. final Map<String, JsonValue>
_additionalProperties()
final ResponseCodeInterpreterCallInterpretingEvent
validate()
final ResponseCodeInterpreterCallInterpretingEvent.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ResponseCodeInterpreterCallInterpretingEvent.Builder
builder()
Returns a mutable builder for constructing an instance of ResponseCodeInterpreterCallInterpretingEvent. -
-
Method Detail
-
codeInterpreterCall
final ResponseCodeInterpreterToolCall codeInterpreterCall()
A tool call to run code.
-
outputIndex
final Long outputIndex()
The index of the output item that the code interpreter call is in progress.
-
_type
final JsonValue _type()
The type of the event. Always
response.code_interpreter_call.interpreting
.
-
_codeInterpreterCall
final JsonField<ResponseCodeInterpreterToolCall> _codeInterpreterCall()
A tool call to run code.
-
_outputIndex
final JsonField<Long> _outputIndex()
The index of the output item that the code interpreter call is in progress.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final ResponseCodeInterpreterCallInterpretingEvent validate()
-
toBuilder
final ResponseCodeInterpreterCallInterpretingEvent.Builder toBuilder()
-
builder
final static ResponseCodeInterpreterCallInterpretingEvent.Builder builder()
Returns a mutable builder for constructing an instance of ResponseCodeInterpreterCallInterpretingEvent.
The following fields are required:
.codeInterpreterCall() .outputIndex()
-
-
-
-