nexus-agents - v2.80.0
    Preparing search index...

    Interface GraphExecutionResult

    Result of a full graph execution.

    interface GraphExecutionResult {
        finalState: Readonly<GraphState>;
        nodeResults: readonly NodeResult[];
        totalDurationMs: number;
        stepsExecuted: number;
        halted?: {
            checkpointId: string;
            nodeId: string;
            interruptId: string;
            value: unknown;
        };
    }
    Index

    Properties

    finalState: Readonly<GraphState>
    nodeResults: readonly NodeResult[]
    totalDurationMs: number
    stepsExecuted: number
    halted?: {
        checkpointId: string;
        nodeId: string;
        interruptId: string;
        value: unknown;
    }

    Set when execution paused on an Interrupt return. The checkpoint referenced here can be passed to resumeFromCheckpoint(...) along with a matching {[interruptId]: resumeValue} map. (#1895)