AIPromptOutputItem
Class
Definition
Namespace:Telerik.WinControls.UI.AIPrompt
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public class AIPromptOutputItem : INotifyPropertyChanged
Inheritance: objectAIPromptOutputItem
Implements:
Constructors
C#
public AIPromptOutputItem()
Properties
Gets or sets the input text (the end-user's request) that was sent to the AI model.
C#
public string InputText { get; set; }
Gets or sets the end-user rating for this response.
C#
public double Rating { get; set; }
Gets or sets the text response from the AI model.
C#
public string ResponseText { get; set; }
Methods
C#
protected virtual void OnNotifyPropertyChanged(string propertyName)
Events
C#
public event PropertyChangedEventHandler PropertyChanged
Implements: