agentv 3.10.1 → 3.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,7 +17,7 @@ import {
17
17
  validateEvalFile,
18
18
  validateFileReferences,
19
19
  validateTargetsFile
20
- } from "./chunk-TXCVDTEE.js";
20
+ } from "./chunk-F7LAJMTO.js";
21
21
  import {
22
22
  createBuiltinRegistry,
23
23
  createProvider,
@@ -35,7 +35,7 @@ import {
35
35
  toSnakeCaseDeep as toSnakeCaseDeep2,
36
36
  transpileEvalYamlFile,
37
37
  trimBaselineResult
38
- } from "./chunk-GWHHM6X2.js";
38
+ } from "./chunk-KGK5NUFG.js";
39
39
  import {
40
40
  __commonJS,
41
41
  __esm,
@@ -4187,7 +4187,7 @@ var evalRunCommand = command({
4187
4187
  },
4188
4188
  handler: async (args) => {
4189
4189
  if (args.evalPaths.length === 0 && process.stdin.isTTY) {
4190
- const { launchInteractiveWizard } = await import("./interactive-N463HRIL.js");
4190
+ const { launchInteractiveWizard } = await import("./interactive-EO6AR2R3.js");
4191
4191
  await launchInteractiveWizard();
4192
4192
  return;
4193
4193
  }
@@ -6287,4 +6287,4 @@ export {
6287
6287
  preprocessArgv,
6288
6288
  runCli
6289
6289
  };
6290
- //# sourceMappingURL=chunk-JLFFYTZA.js.map
6290
+ //# sourceMappingURL=chunk-6UE665XI.js.map
@@ -27,12 +27,12 @@ import {
27
27
  subscribeToCopilotCliLogEntries,
28
28
  subscribeToCopilotSdkLogEntries,
29
29
  subscribeToPiLogEntries
30
- } from "./chunk-GWHHM6X2.js";
30
+ } from "./chunk-KGK5NUFG.js";
31
31
 
32
32
  // package.json
33
33
  var package_default = {
34
34
  name: "agentv",
35
- version: "3.10.1",
35
+ version: "3.10.2",
36
36
  description: "CLI entry point for AgentV",
37
37
  type: "module",
38
38
  repository: {
@@ -2259,25 +2259,7 @@ async function validateEvalFile(filePath) {
2259
2259
  });
2260
2260
  }
2261
2261
  }
2262
- let cases = parsed.tests;
2263
- if (cases === void 0 && "eval_cases" in parsed) {
2264
- cases = parsed.eval_cases;
2265
- errors.push({
2266
- severity: "warning",
2267
- filePath: absolutePath,
2268
- location: "eval_cases",
2269
- message: "'eval_cases' is deprecated. Use 'tests' instead."
2270
- });
2271
- }
2272
- if (cases === void 0 && "evalcases" in parsed) {
2273
- cases = parsed.evalcases;
2274
- errors.push({
2275
- severity: "warning",
2276
- filePath: absolutePath,
2277
- location: "evalcases",
2278
- message: "'evalcases' is deprecated. Use 'tests' instead."
2279
- });
2280
- }
2262
+ const cases = parsed.tests;
2281
2263
  if (typeof cases === "string") {
2282
2264
  validateTestsStringPath(cases, absolutePath, errors);
2283
2265
  await validateWorkspaceConfig(parsed.workspace, absolutePath, errors, "workspace");
@@ -2329,6 +2311,19 @@ async function validateEvalFile(filePath) {
2329
2311
  for (let i = 0; i < cases.length; i++) {
2330
2312
  const evalCase = cases[i];
2331
2313
  const location = `tests[${i}]`;
2314
+ if (typeof evalCase === "string") {
2315
+ if (evalCase.startsWith("file://")) {
2316
+ validateTestsStringPath(evalCase, absolutePath, errors);
2317
+ } else {
2318
+ errors.push({
2319
+ severity: "error",
2320
+ filePath: absolutePath,
2321
+ location,
2322
+ message: "Test case string must be a file reference (file://...)"
2323
+ });
2324
+ }
2325
+ continue;
2326
+ }
2332
2327
  if (!isObject(evalCase)) {
2333
2328
  errors.push({
2334
2329
  severity: "error",
@@ -2542,7 +2537,9 @@ function validateMessages(messages, location, filePath, errors) {
2542
2537
  });
2543
2538
  }
2544
2539
  const content = message.content;
2545
- if (typeof content === "string") {
2540
+ const hasToolCalls = "tool_calls" in message;
2541
+ if (content === void 0 && hasToolCalls) {
2542
+ } else if (typeof content === "string") {
2546
2543
  validateContentForRoleMarkers(content, `${msgLocation}.content`, filePath, errors);
2547
2544
  } else if (Array.isArray(content)) {
2548
2545
  for (let j = 0; j < content.length; j++) {
@@ -2582,12 +2579,13 @@ function validateMessages(messages, location, filePath, errors) {
2582
2579
  });
2583
2580
  }
2584
2581
  }
2582
+ } else if (isObject(content)) {
2585
2583
  } else {
2586
2584
  errors.push({
2587
2585
  severity: "error",
2588
2586
  filePath,
2589
2587
  location: `${msgLocation}.content`,
2590
- message: "Missing or invalid 'content' field (must be a string or array)"
2588
+ message: "Missing or invalid 'content' field (must be a string, array, or object)"
2591
2589
  });
2592
2590
  }
2593
2591
  }
@@ -4157,7 +4155,7 @@ async function runEvalCommand(input) {
4157
4155
  const useFileExport = !!(options.otelFile || options.traceFile);
4158
4156
  if (options.exportOtel || useFileExport) {
4159
4157
  try {
4160
- const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-FPC7J7KQ.js");
4158
+ const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-3QUJEJUT.js");
4161
4159
  let endpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT;
4162
4160
  let headers = {};
4163
4161
  if (options.otelBackend) {
@@ -4502,4 +4500,4 @@ export {
4502
4500
  selectTarget,
4503
4501
  runEvalCommand
4504
4502
  };
4505
- //# sourceMappingURL=chunk-TXCVDTEE.js.map
4503
+ //# sourceMappingURL=chunk-F7LAJMTO.js.map