Package com.openai.models
Class CodeInterpreterToolCallDelta.CodeInterpreter
-
- All Implemented Interfaces:
public final class CodeInterpreterToolCallDelta.CodeInterpreter
The Code Interpreter tool call definition.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
CodeInterpreterToolCallDelta.CodeInterpreter.Builder
A builder for CodeInterpreter.
public final class
CodeInterpreterToolCallDelta.CodeInterpreter.Output
Text output from the Code Interpreter tool call as part of a run step.
-
Method Summary
Modifier and Type Method Description final Optional<String>
input()
The input to the Code Interpreter tool call. final Optional<List<CodeInterpreterToolCallDelta.CodeInterpreter.Output>>
outputs()
The outputs from the Code Interpreter tool call. final JsonField<String>
_input()
The input to the Code Interpreter tool call. final JsonField<List<CodeInterpreterToolCallDelta.CodeInterpreter.Output>>
_outputs()
The outputs from the Code Interpreter tool call. final Map<String, JsonValue>
_additionalProperties()
final CodeInterpreterToolCallDelta.CodeInterpreter
validate()
final CodeInterpreterToolCallDelta.CodeInterpreter.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static CodeInterpreterToolCallDelta.CodeInterpreter.Builder
builder()
-
-
Method Detail
-
outputs
final Optional<List<CodeInterpreterToolCallDelta.CodeInterpreter.Output>> outputs()
The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (
logs
) or images (image
). Each of these are represented by a different object type.
-
_outputs
final JsonField<List<CodeInterpreterToolCallDelta.CodeInterpreter.Output>> _outputs()
The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (
logs
) or images (image
). Each of these are represented by a different object type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final CodeInterpreterToolCallDelta.CodeInterpreter validate()
-
toBuilder
final CodeInterpreterToolCallDelta.CodeInterpreter.Builder toBuilder()
-
builder
final static CodeInterpreterToolCallDelta.CodeInterpreter.Builder builder()
-
-
-
-