Hey, I have a scenario where I want to execute certain number of functions in a flow, but the flow has to be created dynamically. I am exploring Prefect for the same.
Example:
def func1(): returns A
def func2(A): returns B
def func3(B): returns C
------------------------------
Using flow.chain(func1,func2,func3) I can create a dynamic flow (will pick function names from configuration file). This works when these functions are standalone, but I am not sure about how to manage the dependent parameters or external parameters. Can some one guide here if came across such a ?