Interface ModelConverterPipelineConfig

Defines the structure of a conversion pipeline within a ModelConverter.

A pipeline consists of one or more inputs and outputs, each identified by a unique key.

interface ModelConverterPipelineConfig {
    inputs: { [key: string]: ModelConverterInputConfig };
    outputs?: { [key: string]: ModelConverterOutputConfig };
}

Properties

Properties

inputs: { [key: string]: ModelConverterInputConfig }

A map of input configurations, where each key identifies a pipeline input.

Each input specifies how the source data is loaded into the pipeline.

outputs?: { [key: string]: ModelConverterOutputConfig }

A map of output configurations, where each key identifies a pipeline output.

Each output specifies how the processed data is exported from the pipeline.