ToolCallStepDetails

@Serializable
data class ToolCallStepDetails(val toolCalls: List<ToolCallStep>? = null) : RunStepDetails

Details of the tool call.

Constructors

Link copied to clipboard
constructor(toolCalls: List<ToolCallStep>? = null)

Properties

Link copied to clipboard

An array of tool calls the run step was involved in. These can be associated with one of three types of tools: ToolCallStep.CodeInterpreter, ToolCallStep.RetrievalTool, or ToolCallStep.FunctionTool.