TunedModel constructor

TunedModel({
  1. TunedModelSource? tunedModelSource,
  2. String? baseModel,
  3. String name = '',
  4. String displayName = '',
  5. String description = '',
  6. double? temperature,
  7. double? topP,
  8. int? topK,
  9. TunedModel_State state = TunedModel_State.$default,
  10. Timestamp? createTime,
  11. Timestamp? updateTime,
  12. required TuningTask? tuningTask,
  13. List<int> readerProjectNumbers = const [],
})

Implementation

TunedModel({
  this.tunedModelSource,
  this.baseModel,
  this.name = '',
  this.displayName = '',
  this.description = '',
  this.temperature,
  this.topP,
  this.topK,
  this.state = TunedModel_State.$default,
  this.createTime,
  this.updateTime,
  required this.tuningTask,
  this.readerProjectNumbers = const [],
}) : super(fullyQualifiedName);