AIMessage
Class
Represents a message containing AI-generated content for use in conversational UI.
Definition
Namespace:Telerik.Windows.Controls.ConversationalUI
Assembly:Telerik.Windows.Controls.ConversationalUI.dll
Syntax:
C#
public class AIMessage : MessageBase, IReportMessageResult, INotifyPropertyChanged, IInlineMessage
Inheritance: objectMessageBaseAIMessage
Implements:
Inherited Members
Constructors
Properties
Gets or sets the answer or content generated by the AI agent.
C#
public string AIAnswer { get; set; }
Gets or sets the name of the AI agent that generated the message.
C#
public string AIName { get; set; }
Gets the InlineViewModel associated with this message, used for inline display in the chat UI.
C#
public InlineViewModel InlineViewModel { get; }
Implements: