Longbridge OpenAPI SDK
    Preparing search index...

    Interface NodeToolUseFinishedPayload

    Payload of a node_tool_use_finished stream event — the tool call has ended.

    interface NodeToolUseFinishedPayload {
        toolUseId: string;
        status: string;
        error: string;
        elapsedTime: number;
        startedAt: number;
        toolName: string;
        toolFuncName: string;
        toolArgs: string;
        toolType: string;
        tips: string;
        tipChips: string[];
        iteration: number;
        isThinking: boolean;
        outputs: NodeToolUseOutputs;
    }
    Index
    toolUseId: string

    Matches the toolUseId of the started event

    status: string

    succeeded / failed

    error: string

    Error description on failure

    elapsedTime: number

    Call duration in seconds

    startedAt: number

    Start time, Unix timestamp in seconds

    toolName: string

    Localized display name

    toolFuncName: string

    Locale-stable tool identifier

    toolArgs: string

    Call arguments as a JSON string

    toolType: string

    Tool category

    tips: string

    Progress text

    tipChips: string[]

    Short tags; may be omitted

    iteration: number

    Round number

    isThinking: boolean

    true if the call happened during the thinking phase

    Filtered call results, for display