RAGConfiguration constructor
const
RAGConfiguration({})
Implementation
const RAGConfiguration({
required this.embeddingModelPath,
required this.llmModelPath,
this.embeddingDimension = 384,
this.topK = 3,
this.similarityThreshold = 0.3,
this.maxContextTokens = 2048,
this.chunkSize = 512,
this.chunkOverlap = 50,
this.promptTemplate,
this.embeddingConfigJSON,
this.llmConfigJSON,
});