agentv 3.2.4 → 3.2.5
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.
- package/dist/{chunk-VBGYESW7.js → chunk-6XTYVCMN.js} +70 -8
- package/dist/chunk-6XTYVCMN.js.map +1 -0
- package/dist/{chunk-O3KO5MUH.js → chunk-BPK64EWF.js} +4 -4
- package/dist/{chunk-E5M4NOFQ.js → chunk-WQGBWX5Y.js} +8 -5
- package/dist/chunk-WQGBWX5Y.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/{dist-WJ4A7XQQ.js → dist-JXD6WHHI.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/{interactive-VWMIIF4F.js → interactive-B72SWNWB.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-E5M4NOFQ.js.map +0 -1
- package/dist/chunk-VBGYESW7.js.map +0 -1
- /package/dist/{chunk-O3KO5MUH.js.map → chunk-BPK64EWF.js.map} +0 -0
- /package/dist/{dist-WJ4A7XQQ.js.map → dist-JXD6WHHI.js.map} +0 -0
- /package/dist/{interactive-VWMIIF4F.js.map → interactive-B72SWNWB.js.map} +0 -0
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
validateEvalFile,
|
|
13
13
|
validateFileReferences,
|
|
14
14
|
validateTargetsFile
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-WQGBWX5Y.js";
|
|
16
16
|
import {
|
|
17
17
|
createBuiltinRegistry,
|
|
18
18
|
createProvider,
|
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
toSnakeCaseDeep as toSnakeCaseDeep2,
|
|
31
31
|
transpileEvalYamlFile,
|
|
32
32
|
trimBaselineResult
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-6XTYVCMN.js";
|
|
34
34
|
import {
|
|
35
35
|
__commonJS,
|
|
36
36
|
__esm,
|
|
@@ -4177,7 +4177,7 @@ var evalRunCommand = command({
|
|
|
4177
4177
|
},
|
|
4178
4178
|
handler: async (args) => {
|
|
4179
4179
|
if (args.evalPaths.length === 0 && process.stdin.isTTY) {
|
|
4180
|
-
const { launchInteractiveWizard } = await import("./interactive-
|
|
4180
|
+
const { launchInteractiveWizard } = await import("./interactive-B72SWNWB.js");
|
|
4181
4181
|
await launchInteractiveWizard();
|
|
4182
4182
|
return;
|
|
4183
4183
|
}
|
|
@@ -6146,4 +6146,4 @@ export {
|
|
|
6146
6146
|
preprocessArgv,
|
|
6147
6147
|
runCli
|
|
6148
6148
|
};
|
|
6149
|
-
//# sourceMappingURL=chunk-
|
|
6149
|
+
//# sourceMappingURL=chunk-BPK64EWF.js.map
|
|
@@ -25,12 +25,12 @@ import {
|
|
|
25
25
|
subscribeToCopilotCliLogEntries,
|
|
26
26
|
subscribeToCopilotSdkLogEntries,
|
|
27
27
|
subscribeToPiLogEntries
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-6XTYVCMN.js";
|
|
29
29
|
|
|
30
30
|
// package.json
|
|
31
31
|
var package_default = {
|
|
32
32
|
name: "agentv",
|
|
33
|
-
version: "3.2.
|
|
33
|
+
version: "3.2.5",
|
|
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-
|
|
3976
|
+
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-JXD6WHHI.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-
|
|
4298
|
+
//# sourceMappingURL=chunk-WQGBWX5Y.js.map
|