Class AIPromptOutputItem
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.AIPrompt
Assembly: Telerik.WinControls.UI.dll
Syntax
public class AIPromptOutputItem : INotifyPropertyChanged
Constructors
AIPromptOutputItem()
Declaration
public AIPromptOutputItem()
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
|
Tag
Gets or sets an object associated with this item.
Declaration
public object Tag { get; set; }
Property Value
System.Object
|
Title
Gets or sets the title.
Declaration
public string Title { get; set; }
Property Value
System.String
|
Methods
OnNotifyPropertyChanged(String)
Declaration
protected virtual void OnNotifyPropertyChanged(string propertyName)
Parameters
System.String
propertyName
|
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|