from nbdev.showdoc import *🔧 Workflow Engine
Minimal wrapper for executing callable sequences in order.
🎯 Overview
| Class | Purpose |
|---|---|
Workflow |
Execute callable steps sequentially |
🔧 Workflow Class
| Method | Purpose |
|---|---|
Workflow(steps) |
Initialize with list of callables |
.execute() |
Run all steps sequentially |
Workflow
def Workflow(
steps:List
):
Execute a list of callables sequentially. Minimal wrapper for code readability.
Workflow.execute
def execute(
):
Execute all steps in order