Skip to main content

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)