interface FunctionCallDelta {
    arguments?: { [key: string]: unknown };
    id?: string;
    name?: string;
    type: "function_call";
}

Properties

arguments?: { [key: string]: unknown }
id?: string

A unique ID for this specific tool call.

name?: string
type: "function_call"

Used as the OpenAPI type discriminator for the content oneof.