CactusModel constructor

CactusModel({
  1. required DateTime createdAt,
  2. required String slug,
  3. required String downloadUrl,
  4. required int sizeMb,
  5. required bool supportsToolCalling,
  6. required bool supportsVision,
  7. required String name,
  8. bool isDownloaded = false,
  9. int quantization = 8,
})

Implementation

CactusModel({
  required this.createdAt,
  required this.slug,
  required this.downloadUrl,
  required this.sizeMb,
  required this.supportsToolCalling,
  required this.supportsVision,
  required this.name,
  this.isDownloaded = false,
  this.quantization = 8
});