Interface ToolCallResult

Represents the result of a tool execution, structured to be sent back to the LLM. ToolCallResult

interface ToolCallResult {
    toolCallId: string;
    toolName: string;
    output: any;
    isError?: boolean;
    errorDetails?: any;
}

Properties

toolCallId: string
toolName: string
output: any
isError?: boolean
errorDetails?: any