agentv 3.2.4 → 3.3.0

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.
@@ -25,12 +25,12 @@ import {
25
25
  subscribeToCopilotCliLogEntries,
26
26
  subscribeToCopilotSdkLogEntries,
27
27
  subscribeToPiLogEntries
28
- } from "./chunk-VBGYESW7.js";
28
+ } from "./chunk-5M3K2DMV.js";
29
29
 
30
30
  // package.json
31
31
  var package_default = {
32
32
  name: "agentv",
33
- version: "3.2.4",
33
+ version: "3.3.0",
34
34
  description: "CLI entry point for AgentV",
35
35
  type: "module",
36
36
  repository: {
@@ -396,12 +396,14 @@ function buildGradingArtifact(result) {
396
396
  function buildTimingArtifact(results) {
397
397
  let totalInput = 0;
398
398
  let totalOutput = 0;
399
+ let totalReasoning = 0;
399
400
  let totalDurationMs = 0;
400
401
  for (const result of results) {
401
402
  const usage = result.tokenUsage;
402
403
  if (usage) {
403
404
  totalInput += usage.input ?? 0;
404
405
  totalOutput += usage.output ?? 0;
406
+ totalReasoning += usage.reasoning ?? 0;
405
407
  }
406
408
  if (result.durationMs != null) {
407
409
  totalDurationMs += result.durationMs;
@@ -413,7 +415,8 @@ function buildTimingArtifact(results) {
413
415
  total_duration_seconds: Math.round(totalDurationMs / 1e3 * 1e3) / 1e3,
414
416
  token_usage: {
415
417
  input: totalInput,
416
- output: totalOutput
418
+ output: totalOutput,
419
+ reasoning: totalReasoning
417
420
  }
418
421
  };
419
422
  }
@@ -3970,7 +3973,7 @@ async function runEvalCommand(input) {
3970
3973
  const useFileExport = !!(options.otelFile || options.traceFile);
3971
3974
  if (options.exportOtel || useFileExport) {
3972
3975
  try {
3973
- const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-WJ4A7XQQ.js");
3976
+ const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-OC53WD3P.js");
3974
3977
  let endpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT;
3975
3978
  let headers = {};
3976
3979
  if (options.otelBackend) {
@@ -4292,4 +4295,4 @@ export {
4292
4295
  selectTarget,
4293
4296
  runEvalCommand
4294
4297
  };
4295
- //# sourceMappingURL=chunk-E5M4NOFQ.js.map
4298
+ //# sourceMappingURL=chunk-4ZMSAQWS.js.map