SourceRagService constructor

SourceRagService({
  1. required String dbPath,
  2. String? modelPath,
  3. int maxChunkChars = 500,
  4. int overlapChars = 50,
})

Implementation

SourceRagService({
  required this.dbPath,
  this.modelPath,
  this.maxChunkChars = 500,
  this.overlapChars = 50,
});