Henry
input_a = Parameter('a') @task def abc(b, c): return a + b + c with Flow("abc_flow") as flow: # in context result = abc()
Kevin Kho