Class
AIPromptOutputItemDescriptorBase

Definition

Namespace:Telerik.Blazor.Components.Common.AIPrompt

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class AIPromptOutputItemDescriptorBase

Inheritance: objectAIPromptOutputItemDescriptorBase

Derived Classes: AIPromptOutputItemDescriptorInlineAIPromptOutputItemDescriptor

Constructors

AIPromptOutputItemDescriptorBase()

Declaration

cs-api-definition
public AIPromptOutputItemDescriptorBase()

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

PromptContext

Defines additional prompt context. It will be added after the prompt.

Declaration

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

Property Value

string

Retried

Defines whether the output is a retry.

Declaration

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

Property Value

bool