Class AgentHandoffEvent
- Namespace
- Emissary
- Assembly
- Emissary.dll
A conversation was transferred to another agent.
public sealed record AgentHandoffEvent : AgentEvent, IEquatable<AgentEvent>, IEquatable<AgentHandoffEvent>
- Inheritance
-
AgentHandoffEvent
- Implements
- Inherited Members
Constructors
AgentHandoffEvent(string, string?)
A conversation was transferred to another agent.
public AgentHandoffEvent(string TargetName, string? Reason)
Parameters
TargetNamestringThe Name that took over.
ReasonstringWhy the model transferred, if it gave a reason.
Properties
Reason
Why the model transferred, if it gave a reason.
public string? Reason { get; init; }
Property Value
TargetName
The Name that took over.
public string TargetName { get; init; }