Class AIThreadInfo
Represents an AI conversation thread in the Telerik Reporting service.
Inheritance
Namespace: Telerik.Reporting.Services.Engine
Assembly: Telerik.Reporting.dll
Syntax
public class AIThreadInfo
Remarks
This class is used for managing AI-assisted conversation threads within the reporting engine. It stores the unique identifier of an AI thread and a collection of predefined prompts that can be used within the conversation.
Constructors
AIThreadInfo()
Declaration
public AIThreadInfo()
Properties
PredefinedPrompts
Gets or sets a collection of predefined prompts available for use within this AI thread.
Declaration
public List<string> PredefinedPrompts { get; set; }
Property Value
System.Collections.Generic.List<System.String>
|
Remarks
Predefined prompts provide suggested or commonly used queries that can be presented to users, making it easier to interact with the AI functionality in the reporting system.
ThreadId
Gets or sets the unique identifier for the AI conversation thread.
Declaration
public string ThreadId { get; set; }
Property Value
System.String
|
Remarks
This identifier is used to reference the specific thread when making requests to the AI service through the reporting engine.