Class AgentWorkflowData
Typed data that flows through an agent workflow.
public class AgentWorkflowData
- Inheritance
-
AgentWorkflowData
- Inherited Members
Properties
FinalResult
The final aggregated result.
public string? FinalResult { get; set; }
Property Value
Kernel
Semantic Kernel instance shared across steps.
public Kernel? Kernel { get; set; }
Property Value
- Kernel
Prompt
The user's original prompt or instruction.
public string Prompt { get; set; }
Property Value
StepOutputs
Accumulated outputs from each step keyed by step name.
public IDictionary<string, string> StepOutputs { get; }