Chatoyant - v0.2.1
    Preparing search index...

    Interface ToolResult

    Tool execution result.

    interface ToolResult {
        id: string;
        result: unknown;
        success: boolean;
        error?: string;
    }
    Index

    Properties

    Properties

    id: string

    Tool call ID

    result: unknown

    Result data or error

    success: boolean

    Whether execution succeeded

    error?: string

    Error message if failed