Package com.openai.models
Class CodeInterpreterToolCall.CodeInterpreter
-
- All Implemented Interfaces:
public final class CodeInterpreterToolCall.CodeInterpreter
The Code Interpreter tool call definition.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
CodeInterpreterToolCall.CodeInterpreter.Builder
public final class
CodeInterpreterToolCall.CodeInterpreter.Output
Text output from the Code Interpreter tool call as part of a run step.
-
Method Summary
Modifier and Type Method Description final String
input()
The input to the Code Interpreter tool call. final List<CodeInterpreterToolCall.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<CodeInterpreterToolCall.CodeInterpreter.Output>>
_outputs()
The outputs from the Code Interpreter tool call. final Map<String, JsonValue>
_additionalProperties()
final CodeInterpreterToolCall.CodeInterpreter
validate()
final CodeInterpreterToolCall.CodeInterpreter.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static CodeInterpreterToolCall.CodeInterpreter.Builder
builder()
-
-
Method Detail
-
outputs
final List<CodeInterpreterToolCall.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<CodeInterpreterToolCall.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 CodeInterpreterToolCall.CodeInterpreter validate()
-
toBuilder
final CodeInterpreterToolCall.CodeInterpreter.Builder toBuilder()
-
builder
final static CodeInterpreterToolCall.CodeInterpreter.Builder builder()
-
-
-
-