featherbit UI
    Preparing search index...

    Interface ToolAttempt

    interface ToolAttempt {
        call: ToolCall;
        result?: {
            content: string;
            name: string;
            role: "tool";
            status: ToolStatus;
            toolCallId: string;
        };
    }
    Index
    call: ToolCall
    result?: {
        content: string;
        name: string;
        role: "tool";
        status: ToolStatus;
        toolCallId: string;
    }

    Missing while the call is still running or awaiting confirmation.