Class AIPromptOutputItemModel
Contains information about a response received from the AI model based on a request from the end-user.
Inherited Members
Namespace: Telerik.Windows.Controls.ConversationalUI
Assembly: Telerik.Windows.Controls.ConversationalUI.dll
Syntax
public class AIPromptOutputItemModel : ViewModelBase, INotifyPropertyChanged, IDisposable
Constructors
AIPromptOutputItemModel()
Declaration
public AIPromptOutputItemModel()
Properties
InputText
Gets or sets the input text (the end-user's request) that was sent to the AI model.
Declaration
public string InputText { get; set; }
Property Value
System.String
|
Rating
Gets or sets the end-user rating for this response.
Declaration
public double Rating { get; set; }
Property Value
System.Double
|
ResponseText
Gets or sets the text response from the AI model.
Declaration
public string ResponseText { get; set; }
Property Value
System.String
|
Title
Gets or sets the title.
Declaration
public string Title { get; set; }
Property Value
System.String
|