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