Package com.openai.models
Class CodeInterpreterToolCall
-
- All Implemented Interfaces:
public final class CodeInterpreterToolCall
Details of the Code Interpreter tool call the run step was involved in.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
CodeInterpreterToolCall.Builder
public final class
CodeInterpreterToolCall.CodeInterpreter
The Code Interpreter tool call definition.
-
Method Summary
Modifier and Type Method Description final String
id()
The ID of the tool call. final CodeInterpreterToolCall.CodeInterpreter
codeInterpreter()
The Code Interpreter tool call definition. final JsonValue
_type()
The type of tool call. final JsonField<String>
_id()
The ID of the tool call. final JsonField<CodeInterpreterToolCall.CodeInterpreter>
_codeInterpreter()
The Code Interpreter tool call definition. final Map<String, JsonValue>
_additionalProperties()
final CodeInterpreterToolCall
validate()
final CodeInterpreterToolCall.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static CodeInterpreterToolCall.Builder
builder()
-
-
Method Detail
-
codeInterpreter
final CodeInterpreterToolCall.CodeInterpreter codeInterpreter()
The Code Interpreter tool call definition.
-
_type
final JsonValue _type()
The type of tool call. This is always going to be
code_interpreter
for this type of tool call.
-
_codeInterpreter
final JsonField<CodeInterpreterToolCall.CodeInterpreter> _codeInterpreter()
The Code Interpreter tool call definition.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final CodeInterpreterToolCall validate()
-
toBuilder
final CodeInterpreterToolCall.Builder toBuilder()
-
builder
final static CodeInterpreterToolCall.Builder builder()
-
-
-
-