Agent Client Protocol - v0.2.0-alpha.8
    Preparing search index...

    Interface ToolCallUpdate

    Details about the tool call requiring permission.

    interface ToolCallUpdate {
        content?: null | ToolCallContent[];
        kind?: null | ToolKind;
        locations?: null | ToolCallLocation[];
        rawInput?: { [k: string]: unknown };
        rawOutput?: { [k: string]: unknown };
        status?: null | ToolCallStatus;
        title?: null | string;
        toolCallId: string;
    }
    Index

    Properties

    content?: null | ToolCallContent[]

    Replace the content collection.

    kind?: null | ToolKind

    Update the tool kind.

    locations?: null | ToolCallLocation[]

    Replace the locations collection.

    rawInput?: { [k: string]: unknown }

    Update the raw input.

    rawOutput?: { [k: string]: unknown }

    Update the raw output.

    status?: null | ToolCallStatus

    Update the execution status.

    title?: null | string

    Update the human-readable title.

    toolCallId: string

    The ID of the tool call being updated.