Class
AIQueryArgs

Represents the arguments passed to the GetAIResponse method of the IReportEngine

Definition

Namespace:Telerik.Reporting.Services.Engine

Assembly:Telerik.Reporting.dll

Syntax:

cs-api-definition
public class AIQueryArgs

Inheritance: objectAIQueryArgs

Constructors

AIQueryArgs()

Declaration

cs-api-definition
public AIQueryArgs()

Properties

ConfirmationCallBack

Gets or sets a callback function for confirmation, which receives the number of tokens and returns a boolean determining if sending the prompt to LLM should continue.

Declaration

cs-api-definition
public Func<AIRequestInfo, ConfirmationResult> ConfirmationCallBack { get; set; }

Property Value

Func<AIRequestInfo, ConfirmationResult>

Query

The question given to the AI model

Declaration

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

Property Value

string