Class AIPromptOutputItem
Contains information about a response received from the AI model based on a request from the end-user.
Inherited Members
Namespace: Telerik.Maui.Controls.AIPrompt
Assembly: Telerik.Maui.Controls.dll
Syntax
public class AIPromptOutputItem : NotifyPropertyChangedBase, INotifyPropertyChanged
Constructors
AIPromptOutputItem()
Declaration
public AIPromptOutputItem()
Properties
Data
Gets or sets some custom information about the particular item. The RadAIPrompt does not use this property anywhere, use this to carry a payload of information for your convenience.
Declaration
public object Data { get; set; }
Property Value
System.Object
|
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
|