View Source OpenAi.Run.Step.Delta.Step.DetailsToolCalls (OpenAI REST API Client v0.4.4)

Provides struct and type for a Run.Step.Delta.Step.DetailsToolCalls

RunStepDeltaStepDetailsToolCallsObject:

title: Tool calls
type: object
description: Details of the tool call.
properties:
    type:
        description: Always `tool_calls`.
        type: string
        enum: ["tool_calls"]
    tool_calls:
        type: array
        description: |
            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`, or `function`.
        items:
            oneOf:
                - $ref: "#/components/schemas/RunStepDeltaStepDetailsToolCallsCodeObject"
                - $ref: "#/components/schemas/RunStepDeltaStepDetailsToolCallsFileSearchObject"
                - $ref: "#/components/schemas/RunStepDeltaStepDetailsToolCallsFunctionObject"
            x-oaiExpandable: true
required:
    - type

Summary

Types