Python class
PipelineInputs
PipelineInputs
class max.interfaces.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.
class MyPipelineInputs(PipelineInputs):
def __init__(self, data: str, config: dict):
self.data = data
self.config = configWas this page helpful?
Thank you! We'll create more content like this.
Thank you for helping us improve!