Class
AIPromptOutputItemModel

Contains information about a response received from the AI model based on a request from the end-user.

Definition

Namespace:Telerik.Windows.Controls.ConversationalUI

Assembly:Telerik.Windows.Controls.ConversationalUI.dll

Syntax:

cs-api-definition
public class AIPromptOutputItemModel : ViewModelBase, INotifyPropertyChanged, IDisposable

Inheritance: objectViewModelBaseAIPromptOutputItemModel

Implements: IDisposableINotifyPropertyChanged

Inherited Members ViewModelBase.VerifyPropertyName(string)ViewModelBase.InvokeOnUIThread(Action)ViewModelBase.Dispose()ViewModelBase.RaisePropertyChanged(string)ViewModelBase.OnPropertyChanged(string)ViewModelBase.OnPropertyChanged<T>(Expression<Func<T>>)ViewModelBase.Dispose(bool)ViewModelBase.PropertyChanged

Constructors

AIPromptOutputItemModel()

Declaration

cs-api-definition
public AIPromptOutputItemModel()

Properties

InputText

Gets or sets the input text (the end-user's request) that was sent to the AI model.

Declaration

cs-api-definition
public string InputText { get; set; }

Property Value

string

Rating

Gets or sets the end-user rating for this response.

Declaration

cs-api-definition
public double Rating { get; set; }

Property Value

double

ResponseText

Gets or sets the text response from the AI model.

Declaration

cs-api-definition
public string ResponseText { get; set; }

Property Value

string

Title

Gets or sets the title.

Declaration

cs-api-definition
public string Title { get; set; }

Property Value

string