Longbridge OpenAPI SDK
    Preparing search index...

    Interface AgentToolFinishedPayload

    Payload of an agent_tool_finished stream event

    interface AgentToolFinishedPayload {
        nodeId: string;
        toolUseId: string;
        agentToolName: string;
        status: string;
        startedAt: number;
        elapsedTime: number;
        error: string;
        toolArgs: string;
        outputs?: any;
        toolType: string;
        tips: string;
        tipChips: string[];
        isThinking: boolean;
    }
    Index
    nodeId: string

    ID of the calling node

    toolUseId: string

    Matches the toolUseId of AgentToolStarted

    agentToolName: string

    Identifier of the Agent being called

    status: string

    succeeded / failed

    startedAt: number

    Start time, Unix timestamp in seconds

    elapsedTime: number

    Total duration in seconds

    error: string

    Error description on failure

    toolArgs: string

    Call arguments as a JSON string

    outputs?: any

    Result of the delegated Agent

    toolType: string

    Tool category

    tips: string

    Progress text; may be omitted

    tipChips: string[]

    Short tags; may be omitted

    isThinking: boolean

    true if during the thinking phase