Longbridge OpenAPI SDK
    Preparing search index...

    Interface Interrupt

    Present when a conversation run is interrupted, waiting for AgentContext.continueConversation

    interface Interrupt {
        nodeId: string;
        toolCallId: string;
        questions: Question[];
        interactions: HumanInteraction[];
        messageId: number;
        chatId: number;
    }
    Index
    nodeId: string

    ID of the node that triggered the interrupt

    toolCallId: string

    Tool call ID of this inquiry; used as the answer key when continuing

    questions: Question[]

    Questions you need to answer

    interactions: HumanInteraction[]

    Full interaction descriptors used to render and answer the pause

    messageId: number

    ID of the paused message

    chatId: number

    ID of the owning conversation