Table of Contents

Class TeamResult

Namespace
JD.AI.Core.Agents.Orchestration
Assembly
JD.AI.Core.dll

The combined result of a team execution.

public sealed class TeamResult
Inheritance
TeamResult
Inherited Members

Properties

AgentResults

Per-agent results.

public IReadOnlyDictionary<string, AgentResult> AgentResults { get; init; }

Property Value

IReadOnlyDictionary<string, AgentResult>

Duration

Total wall-clock duration.

public TimeSpan Duration { get; init; }

Property Value

TimeSpan

Output

The synthesized/final output from the team.

public required string Output { get; init; }

Property Value

string

Strategy

The orchestration strategy used.

public required string Strategy { get; init; }

Property Value

string

Success

Whether the team completed successfully.

public bool Success { get; init; }

Property Value

bool

TotalTokens

Total tokens consumed across all agents.

public long TotalTokens { get; }

Property Value

long