Class AIPromptOutputItemDescriptor
The class that describes the output of the AI Prompt.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class AIPromptOutputItemDescriptor : Object
Constructors
AIPromptOutputItemDescriptor()
Declaration
public AIPromptOutputItemDescriptor()
Properties
CommandId
Defines the CommandId of the output. This property is populated only if the output is related to a command execution.
Declaration
public string CommandId { get; set; }
Property Value
System.String
|
Output
Defines the output from the request.
Declaration
public string Output { get; set; }
Property Value
System.String
|
Prompt
Defines the prompt of the output. This property is populated only if the output is related to a prompt request.
Declaration
public string Prompt { get; set; }
Property Value
System.String
|
Rating
Defines the rating of the output.
Declaration
public Nullable<AIPromptOutputRatingType> Rating { get; set; }
Property Value
System.Nullable<AIPromptOutputRatingType>
|
Retried
Defines whether the output is a retry.
Declaration
public bool Retried { get; set; }
Property Value
System.Boolean
|
Subtitle
Defines the SubTitle of the output.
Declaration
public string Subtitle { get; set; }
Property Value
System.String
|
Title
Defines the Title of the output.
Declaration
public string Title { get; set; }
Property Value
System.String
|