Longbridge OpenAPI SDK
    Preparing search index...

    Interface SubagentProgressPayload

    Payload of a subagent_progress stream event, emitted every time the subagent calls one of its own tools. Use it to render a live timeline inside the subagent card.

    interface SubagentProgressPayload {
        nodeId: string;
        parentToolCallId: string;
        subagentToolName: string;
        subagentToolArgs: string;
        subagentStatus: string;
        subagentDurationMs: number;
        subagentIteration: number;
        startedAt: number;
    }
    Index
    nodeId: string

    ID of the node that spawned the subagent

    parentToolCallId: string

    toolUseId of the owning SubagentStarted event

    subagentToolName: string

    Name of the tool the subagent called

    subagentToolArgs: string

    Arguments of that call, as a JSON string

    subagentStatus: string

    Status of that call: running / succeeded / failed

    subagentDurationMs: number

    Duration of that call in milliseconds

    subagentIteration: number

    The subagent's internal round number

    startedAt: number

    Start time, Unix timestamp in seconds