Table of Contents

Class AgentWorkflowData

Namespace
JD.AI.Workflows.Steps
Assembly
JD.AI.Workflows.dll

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

string

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

string

StepOutputs

Accumulated outputs from each step keyed by step name.

public IDictionary<string, string> StepOutputs { get; }

Property Value

IDictionary<string, string>