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
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");