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
PipelineInputs
PipelineInputs
class max.pipelines.modeling.types.PipelineInputs
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.
from max.pipelines.modeling.types.pipeline import PipelineInputs
class MyPipelineInputs(PipelineInputs):
def __init__(self, data: str, config: dict):
self.data = data
self.config = config