Class
AIPromptOutputItemDescriptor

The class that describes the output of the AI Prompt.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class AIPromptOutputItemDescriptor

Inheritance: objectAIPromptOutputItemDescriptor

Constructors

AIPromptOutputItemDescriptor()

Declaration

cs-api-definition
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

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

Property Value

string

Output

Defines the output from the request.

Declaration

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

Property Value

string

Prompt

Defines the prompt of the output. This property is populated only if the output is related to a prompt request.

Declaration

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

Property Value

string

Rating

Defines the rating of the output.

Declaration

cs-api-definition
public AIPromptOutputRatingType? Rating { get; set; }

Property Value

AIPromptOutputRatingType?

Retried

Defines whether the output is a retry.

Declaration

cs-api-definition
public bool Retried { get; set; }

Property Value

bool

Subtitle

Defines the SubTitle of the output.

Declaration

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

Property Value

string

Title

Defines the Title of the output.

Declaration

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

Property Value

string