interface FunctionToolCallDelta {
    index: number;
    type: "function";
    function?: OpenAIClient.Beta.Threads.Runs.Steps.FunctionToolCallDelta.Function;
    id?: string;
}

Properties

Properties

index: number

The index of the tool call in the tool calls array.

type: "function"

The type of tool call. This is always going to be function for this type of tool call.

The definition of the function that was called.

id?: string

The ID of the tool call object.