Package com.openai.models
Class ToolCallsStepDetails
-
- All Implemented Interfaces:
public final class ToolCallsStepDetails
Details of the tool call.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ToolCallsStepDetails.Builder
-
Method Summary
Modifier and Type Method Description final List<ToolCall>
toolCalls()
An array of tool calls the run step was involved in. final JsonValue
_type()
Always tool_calls
.final JsonField<List<ToolCall>>
_toolCalls()
An array of tool calls the run step was involved in. final Map<String, JsonValue>
_additionalProperties()
final ToolCallsStepDetails
validate()
final ToolCallsStepDetails.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ToolCallsStepDetails.Builder
builder()
-
-
Method Detail
-
toolCalls
final List<ToolCall> 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<ToolCall>> _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 ToolCallsStepDetails validate()
-
toBuilder
final ToolCallsStepDetails.Builder toBuilder()
-
builder
final static ToolCallsStepDetails.Builder builder()
-
-
-
-