Longbridge OpenAPI SDK
    Preparing search index...

    Interface HumanInteraction

    A single interaction requested while an Agent workflow is paused

    interface HumanInteraction {
        toolCallId: string;
        interruptId: string;
        interactionType: string;
        toolName: string;
        questions: Question[];
        toolArgs: any;
    }
    Index
    toolCallId: string

    Tool call that requested the interaction

    interruptId: string

    Stable key expected by answersByToolCall

    interactionType: string

    Interaction type such as ask_human or trade_password

    toolName: string

    Human-readable tool name

    questions: Question[]

    Questions and answer options presented to the user

    toolArgs: any

    Original tool arguments, retained for host-specific UI rendering