Class DataPipelineStage
- Assembly
- FoundationaLLM.Common.dll
Provides the definition of a data pipeline stage.
public class DataPipelineStage : PluginComponent
- Inheritance
-
DataPipelineStage
- Inherited Members
- Extension Methods
Properties
AllStageNames
Gets the name of the data pipeline stage and the names of all its next stages.
[JsonIgnore]
public List<string> AllStageNames { get; }
Property Value
AllStages
Gets the data pipeline stage and all its next stages.
[JsonIgnore]
public List<DataPipelineStage> AllStages { get; }
Property Value
NextStages
Gets or sets the list of the data pipeline stages following this stage.
[JsonPropertyName("next_stages")]
public List<DataPipelineStage> NextStages { get; set; }