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
Duration
Total wall-clock duration.
public TimeSpan Duration { get; init; }
Property Value
Output
The synthesized/final output from the team.
public required string Output { get; init; }
Property Value
Strategy
The orchestration strategy used.
public required string Strategy { get; init; }
Property Value
Success
Whether the team completed successfully.
public bool Success { get; init; }
Property Value
TotalTokens
Total tokens consumed across all agents.
public long TotalTokens { get; }