OllamaModelDescriptor constructor

const OllamaModelDescriptor({
  1. required String name,
  2. int? sizeBytes,
  3. String? family,
  4. List<String>? families,
  5. String? parameterSize,
  6. String? quantizationLevel,
})

Implementation

const OllamaModelDescriptor({
  required this.name,
  this.sizeBytes,
  this.family,
  this.families,
  this.parameterSize,
  this.quantizationLevel,
});