IMPORTANT: To view this page as Markdown, append `.md` to the URL (e.g. /max/get-started.md). For the complete documentation index, see llms.txt.
Skip to main content
For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /max/get-started.md).

Python class

PipelineOutputType

PipelineOutputType

class max.pipelines.modeling.types.PipelineOutputType

source

Type variable for pipeline output types.

This TypeVar is bound to PipelineOutput, ensuring that any type used with this variable must implement the PipelineOutput protocol. Used for generic typing in pipeline operations to maintain type safety while allowing flexibility in output types.

Bounds:
PipelineOutput: All types must implement the PipelineOutput protocol

alias of TypeVar(‘PipelineOutputType’, bound=PipelineOutput)