Table of Contents

Property DefaultOptions

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

DefaultOptions

Gets or sets the default options for this orchestrator.

public OrchestrationOptions DefaultOptions { get; set; }

Property Value

OrchestrationOptions

Examples

Setting orchestrator-wide defaults that apply when callers omit options:

var pipeline = new PipelineOrchestrator();
pipeline.DefaultOptions = new OrchestrationOptions
{
    MaxSteps = 5,
    EnableTracing = true
};

// ExecuteAsync without options now uses these defaults. var result = await pipeline.ExecuteAsync("input");

Share