For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /get-started.md).
Python class
PipelineOutput
PipelineOutput
class max.pipelines.modeling.types.PipelineOutput(*args, **kwargs)
Bases: Protocol
Protocol representing the output of a pipeline operation.
Subclasses must implement the is_done property to indicate whether
the pipeline operation has completed.
is_done
property is_done: bool
Indicates whether the pipeline operation has completed.
-
Returns:
-
Trueif the operation is done,Falseotherwise.