interface FunctionToolCall {
    function: OpenAIClient.Beta.Threads.Runs.Steps.FunctionToolCall.Function;
    id: string;
    type: "function";
}

Properties

Properties

The definition of the function that was called.

id: string

The ID of the tool call object.

type: "function"

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