You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/core/src/evaluation/validation/eval-validator.ts
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -312,6 +312,14 @@ const REMOVED_TOP_LEVEL_FIELDS = new Map<string, string>([
312
312
'providers',
313
313
"Top-level 'providers' is not a runtime alias in AgentV eval YAML. Use 'targets' for systems under test; provider names backend kind inside each target.",
314
314
],
315
+
[
316
+
'eval_cases',
317
+
"Top-level 'eval_cases' has been removed from authored eval YAML. Use 'tests' instead.",
318
+
],
319
+
[
320
+
'evalcases',
321
+
"Top-level 'evalcases' has been removed from authored eval YAML. Use 'tests' instead.",
322
+
],
315
323
['repeat',"Top-level 'repeat' has been removed. Use evaluate_options.repeat instead."],
316
324
['runs',"Top-level 'runs' has been removed. Use evaluate_options.repeat.count instead."],
317
325
[
@@ -331,8 +339,6 @@ const REMOVED_TOP_LEVEL_FIELDS = new Map<string, string>([
331
339
332
340
/** Deprecated top-level fields with migration hints. */
0 commit comments