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

PipelineInputs

PipelineInputs

class max.pipelines.modeling.types.PipelineInputs

source

Bases: object

Base class representing inputs to a pipeline operation.

This class serves as a marker interface for all pipeline input types. Concrete implementations should inherit from this class and define the specific input data structures required for their pipeline operations.

class MyPipelineInputs(PipelineInputs):
    def __init__(self, data: str, config: dict):
        self.data = data
        self.config = config