🔧 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
from nbdev.showdoc import *

source

Workflow


def Workflow(
    steps:List
):

Execute a list of callables sequentially. Minimal wrapper for code readability.


source

Workflow.execute


def execute(
    
):

Execute all steps in order