EvalSuite constructor

const EvalSuite({
  1. required String name,
  2. required String agentName,
  3. required SuiteKind kind,
  4. required List<EvalTask> tasks,
  5. bool requireReferenceSolution = false,
  6. double taskPassThreshold = 1.0,
})

Implementation

const EvalSuite({
  required this.name,
  required this.agentName,
  required this.kind,
  required this.tasks,
  this.requireReferenceSolution = false,
  this.taskPassThreshold = 1.0,
});