Package com.openai.models
Class CodeInterpreterToolCall.Builder
-
- All Implemented Interfaces:
public final class CodeInterpreterToolCall.Builder
-
-
Constructor Summary
Constructors Constructor Description CodeInterpreterToolCall.Builder()
-
Method Summary
-
-
Method Detail
-
id
final CodeInterpreterToolCall.Builder id(String id)
The ID of the tool call.
-
id
final CodeInterpreterToolCall.Builder id(JsonField<String> id)
The ID of the tool call.
-
codeInterpreter
final CodeInterpreterToolCall.Builder codeInterpreter(CodeInterpreterToolCall.CodeInterpreter codeInterpreter)
The Code Interpreter tool call definition.
-
codeInterpreter
final CodeInterpreterToolCall.Builder codeInterpreter(JsonField<CodeInterpreterToolCall.CodeInterpreter> codeInterpreter)
The Code Interpreter tool call definition.
-
type
final CodeInterpreterToolCall.Builder type(CodeInterpreterToolCall.Type type)
The type of tool call. This is always going to be
code_interpreter
for this type of tool call.
-
type
final CodeInterpreterToolCall.Builder type(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 CodeInterpreterToolCall.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final CodeInterpreterToolCall.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final CodeInterpreterToolCall.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final CodeInterpreterToolCall.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final CodeInterpreterToolCall.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final CodeInterpreterToolCall build()
-
-
-
-