Result from executing a tool call.

interface ToolCallResult {
    id: string;
    result?: Record<string, any>;
}

Properties

Properties

id: string

ID of the tool call that was executed.

result?: Record<string, any>

Result of the tool call.