Class RAGSettingsElement
Inheritance
Namespace: Telerik.Reporting.Configuration
Assembly: Telerik.Reporting.dll
Syntax
public class RAGSettingsElement : ConfigurationElement
Constructors
RAGSettingsElement()
Declaration
public RAGSettingsElement()
Properties
MaxNumberOfEmbeddingsSent
Gets or sets the maximum number of embeddings that can be sent in a single RAG request.
Declaration
public int MaxNumberOfEmbeddingsSent { get; set; }
Property Value
System.Int32
|
MaxTokenSizeOfSingleEmbedding
Gets or sets the maximum token size allowed for a single embedding in RAG. A value of 0 means there is no limit. The default value is 0.
Declaration
public int MaxTokenSizeOfSingleEmbedding { get; set; }
Property Value
System.Int32
|
ModelMaxInputTokenLimit
Gets or sets the maximum number of input tokens allowed by the RAG model.
Declaration
public int ModelMaxInputTokenLimit { get; set; }
Property Value
System.Int32
|
SplitTables
Gets or sets a value indicating whether tables should be split during Retrieval-Augmented Generation (RAG) processing. The default value is true.
Declaration
public bool SplitTables { get; set; }
Property Value
System.Boolean
|
TokenizationEncoding
Gets or sets the tokenization encoding used for Retrieval-Augmented Generation (RAG).
Declaration
public string TokenizationEncoding { get; set; }
Property Value
System.String
|