The compiled execution graph (produced by GraphCompiler).
Checkpoint persistence backend.
Execute the workflow while yielding GraphEvent values at each step boundary.
Must conform to the schema declared via .input().
Runtime events in causal order.
Expose the compiled IR for inspection, serialisation, or subgraph composition.
The underlying CompiledExecutionGraph.
An execution-ready workflow produced by
WorkflowBuilder.compile().Wraps a
CompiledExecutionGraphand aGraphRuntime, exposing the same three execution modes as the raw runtime:invoke(input)— run to completion and return final artifacts.stream(input)— run while yieldingGraphEventvalues at each step.resume(checkpointId)— restore an interrupted run from a checkpoint.