TaskDistill constructor

TaskDistill({
  1. required String taskId,
  2. required String record,
  3. required int lod,
  4. required String collection,
  5. required int targetOutputSize,
  6. required int factor,
  7. required int size,
  8. required int embedBatchSize,
  9. required String bucket,
  10. List<String>? toEmbed,
  11. int? lastChunk,
  12. int? emitted,
})

Implementation

TaskDistill({
  required this.taskId,
  required this.record,
  required this.lod,
  required this.collection,
  required this.targetOutputSize,
  required this.factor,
  required this.size,
  required this.embedBatchSize,
  required this.bucket,
  this.toEmbed,
  this.lastChunk,
  this.emitted,
});