For Agentic Applications, the tool call that needs to be executed

interface ToolCall {
    id: string;
    name: string;
    parameters?: Record<string, any>;
}

Properties

Properties

id: string

Unique ID associated with the tool call.

name: string

Name of the tool that needs to be executed.

parameters?: Record<string, any>

Parameters that need to be passed to the tool.