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

PipelineInputsType

PipelineInputsType

class max.pipelines.modeling.types.PipelineInputsType

source

Type variable for pipeline input types.

This TypeVar is bound to PipelineInputs, ensuring that any type used with this variable must inherit from the PipelineInputs base class. Used for generic typing in pipeline operations to maintain type safety while allowing flexibility in input types.

Bounds:
PipelineInputs: All types must inherit from PipelineInputs base class

alias of TypeVar(‘PipelineInputsType’, bound=PipelineInputs)