RagConfig constructor

const RagConfig({
  1. bool? enabled,
  2. EmbeddingModelEnum? embeddingModel,
  3. double? maxVectorDistance,
  4. int? maxDocumentsLength,
  5. int? maxRetrievedRagChunksCount,
})

Implementation

const RagConfig({
  this.enabled,
  this.embeddingModel,
  this.maxVectorDistance,
  this.maxDocumentsLength,
  this.maxRetrievedRagChunksCount,
});