Longbridge OpenAPI SDK
    Preparing search index...

    Interface NodeToolUseStartedPayload

    Payload of a node_tool_use_started stream event — an ordinary tool call has started. Match it to its NodeToolUseFinished counterpart by toolUseId.

    interface NodeToolUseStartedPayload {
        toolUseId: string;
        toolName: string;
        toolFuncName: string;
        toolArgs: string;
        tips: string;
        tipChips: string[];
        iteration: number;
        startedAt: number;
    }
    Index
    toolUseId: string

    Unique ID of this call; matches the finished event

    toolName: string

    Localized display name of the tool

    toolFuncName: string

    Locale-stable tool identifier; use this for logic keyed on the tool kind

    toolArgs: string

    Call arguments as a JSON string

    tips: string

    Progress text suitable for direct display, e.g. "Searching the web…"

    tipChips: string[]

    Short tags accompanying tips; may be omitted

    iteration: number

    Round number. Calls in the same round (same iteration) run in parallel

    startedAt: number

    Start time, Unix timestamp in seconds