New to Telerik UI for BlazorStart a free 30-day trial

Definition

Namespace:Telerik.Blazor.Components.Common.AIPrompt

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class AIPromptOutputItemDescriptorBase

Inheritance: objectAIPromptOutputItemDescriptorBase

Derived Classes: AIPromptOutputItemDescriptorInlineAIPromptOutputItemDescriptor

Constructors

C#
public AIPromptOutputItemDescriptorBase()

Properties

Defines the CommandId of the output. This property is populated only if the output is related to a command execution.

C#
public string CommandId { get; set; }

Defines the output from the request.

C#
public string Output { get; set; }

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

C#
public string Prompt { get; set; }

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

C#
public string PromptContext { get; set; }

Defines whether the output is a retry.

C#
public bool Retried { get; set; }