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 AIPromptOutputActionClickEventArgsBase

Inheritance: objectAIPromptOutputActionClickEventArgsBase

Derived Classes: AIPromptOutputActionClickEventArgsInlineAIPromptOutputActionClickEventArgs

Constructors

C#
public AIPromptOutputActionClickEventArgsBase()

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; }