Table of Contents

Class PipelineStage

Namespace
LMKit.Agents.Orchestration
Assembly
LM-Kit.NET.dll

Represents a stage in a pipeline orchestration.

public sealed class PipelineStage
Inheritance
PipelineStage
Inherited Members

Examples

Inspecting the stages registered on a pipeline:

using LMKit.Agents.Orchestration;

foreach (PipelineStage stage in pipelineOrchestrator.Stages) { Console.WriteLine($"{stage.Name ?? stage.Agent.Identity?.Persona ?? "(unnamed stage)"}"); }

Properties

Agent

Gets the agent for this stage.

InputTransformer

Gets the optional input transformer for this stage.

Name

Gets the optional name for this stage.

Share