Class AIQueryArgs
Represents the arguments passed to the GetAIResponse method of the IReportEngine
Inheritance
System.Object
AIQueryArgs
Namespace: Telerik.Reporting.Services.Engine
Assembly: Telerik.Reporting.dll
Syntax
public class AIQueryArgs
Constructors
AIQueryArgs()
Declaration
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
public Func<AIRequestInfo, ConfirmationResult> ConfirmationCallBack { get; set; }
Property Value
System.Func<AIRequestInfo, ConfirmationResult>
|
Query
The question given to the AI model
Declaration
public string Query { get; set; }
Property Value
System.String
|