Table of Contents

Class ParallelAgent

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

Represents an agent in a parallel orchestration.

public sealed class ParallelAgent
Inheritance
ParallelAgent
Inherited Members

Examples

Reading the agent / name / input-provider triplet during a parallel-execution audit:

using LMKit.Agents.Orchestration;

foreach (ParallelAgent pa in parallelOrchestrator.Agents) { Console.WriteLine($"{pa.Name ?? pa.Agent.Identity?.Persona ?? "(unnamed)"}"); }

Properties

Agent

Gets the agent.

InputProvider

Gets the optional input provider for this agent.

Name

Gets the optional name for identification.

Share