Pipelines

Overview

A Pipeline is very similar to an Agent, but allows for multiple tasks.

You can access the final output of the Pipeline by using the output attribute.

Context

Pipelines have access to the following context variables in addition to the base context.

  • task_outputs: dictionary containing mapping of all task IDs to their outputs.
  • parent_output: output from the parent task if one exists, otherwise None.
  • parent: parent task if one exists, otherwise None.
  • child: child task if one exists, otherwise None.

Pipeline


Could this page be better? Report a problem or suggest an addition!