A function tool call content block.

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

Properties

Properties

arguments: { [key: string]: unknown }

The arguments to pass to the function.

id: string

A unique ID for this specific tool call.

name: string

The name of the tool to call.

type: "function_call"

Used as the OpenAPI type discriminator for the content oneof.