Programming Guide
Graphs
You can string together multiple functions to form a workflow.
In the above example, my_function
is the start node of the workflow. The input to the workflow is passed to my_function
.
Workflows are exposed as HTTP endpoints, the body of the request will be passed to the start node of the workflow, in this case my_function
.
Invoking Graphs
Retrieving Output
Tensorlake workflows allow retrieving the outputs of any function in the workflow.