ProgressSignal Type
One conversation-store write. Mirrors the store's mutating operations so a consumer can route each to whatever transcript store it chooses.
Union cases
| Union case |
Description
|
Full Usage:
AnswerProduced answer
Parameters:
string
|
The turn produced its final answer.
|
Full Usage:
ReasoningAdded content
Parameters:
string
|
A round's assistant output — the orchestrator's reasoning / decision.
|
Full Usage:
SubAgentCompleted(name, result)
Parameters:
string
result : string
|
A sub-agent returned a result.
|
Full Usage:
SubAgentInvoked(name, input)
Parameters:
string
input : string
|
A sub-agent is about to be delegated to with the given input.
|
Full Usage:
ToolCompleted(name, result)
Parameters:
string
result : string
|
A tool returned a result.
|
Full Usage:
ToolInvoked(name, input)
Parameters:
string
input : string
|
A tool is about to be invoked with the given input.
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsAnswerProduced
Returns: bool
|
|
Full Usage:
this.IsReasoningAdded
Returns: bool
|
|
Full Usage:
this.IsSubAgentCompleted
Returns: bool
|
|
Full Usage:
this.IsSubAgentInvoked
Returns: bool
|
|
Full Usage:
this.IsToolCompleted
Returns: bool
|
|
Full Usage:
this.IsToolInvoked
Returns: bool
|
|
Nao