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.
public final class
CodeInterpreterToolCall.Type
The type of tool call. This is always going to be
code_interpreter
for this type of tool call.
-
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 CodeInterpreterToolCall.Type
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 JsonField<CodeInterpreterToolCall.Type>
_type()
The type of tool call. 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 CodeInterpreterToolCall.Type 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.
-
_type
final JsonField<CodeInterpreterToolCall.Type> _type()
The type of tool call. This is always going to be
code_interpreter
for this type of tool call.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final CodeInterpreterToolCall validate()
-
toBuilder
final CodeInterpreterToolCall.Builder toBuilder()
-
builder
final static CodeInterpreterToolCall.Builder builder()
-
-
-
-