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

    Interface GraphExecuteOptions

    Options for graph execution.

    interface GraphExecuteOptions {
        signal?: AbortSignal;
        timeout?: number;
        maxSteps?: number;
        onNodeComplete?: (result: NodeResult) => void;
        checkpointStore?: ICheckpointStore;
        executionId?: string;
        onEvent?: (event: GraphEvent) => void;
        resumeValues?: Readonly<Record<string, unknown>>;
    }
    Index

    Properties

    signal?: AbortSignal
    timeout?: number
    maxSteps?: number
    onNodeComplete?: (result: NodeResult) => void
    checkpointStore?: ICheckpointStore

    Optional checkpoint store for durable execution (Issue #837).

    executionId?: string

    Execution ID for checkpoint grouping. Required with checkpointStore.

    onEvent?: (event: GraphEvent) => void

    Event listener for streaming observation (Issue #838).

    resumeValues?: Readonly<Record<string, unknown>>

    Values supplied for HITL resume. Keyed by Interrupt id; passed to each NodeHandler via its NodeContext on this run only. Empty when not resuming. (#1895)