Package com.openai.models
Class ToolCallDeltaObject
-
- All Implemented Interfaces:
public final class ToolCallDeltaObject
Details of the tool call.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ToolCallDeltaObject.Builder
A builder for ToolCallDeltaObject.
-
Method Summary
Modifier and Type Method Description final JsonValue
_type()
Always tool_calls
.final Optional<List<ToolCallDelta>>
toolCalls()
An array of tool calls the run step was involved in. final JsonField<List<ToolCallDelta>>
_toolCalls()
An array of tool calls the run step was involved in. final Map<String, JsonValue>
_additionalProperties()
final ToolCallDeltaObject
validate()
final ToolCallDeltaObject.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ToolCallDeltaObject.Builder
builder()
-
-
Method Detail
-
toolCalls
final Optional<List<ToolCallDelta>> toolCalls()
An array of tool calls the run step was involved in. These can be associated with one of three types of tools:
code_interpreter
,file_search
, orfunction
.
-
_toolCalls
final JsonField<List<ToolCallDelta>> _toolCalls()
An array of tool calls the run step was involved in. These can be associated with one of three types of tools:
code_interpreter
,file_search
, orfunction
.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final ToolCallDeltaObject validate()
-
toBuilder
final ToolCallDeltaObject.Builder toBuilder()
-
builder
final static ToolCallDeltaObject.Builder builder()
-
-
-
-