agentv 2.16.0 → 2.17.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.
- package/dist/{chunk-JZ62HLUC.js → chunk-FIWNPMZ4.js} +4 -4
- package/dist/{chunk-QLCVA3ZS.js → chunk-H6WRFW2C.js} +9 -9
- package/dist/chunk-H6WRFW2C.js.map +1 -0
- package/dist/{chunk-LZ5MPQFM.js → chunk-UJMO2T4J.js} +75 -48
- package/dist/chunk-UJMO2T4J.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/{dist-BMNEH377.js → dist-4SYTSJN2.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/{interactive-ZXYNPRCT.js → interactive-7K5546RV.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-LZ5MPQFM.js.map +0 -1
- package/dist/chunk-QLCVA3ZS.js.map +0 -1
- /package/dist/{chunk-JZ62HLUC.js.map → chunk-FIWNPMZ4.js.map} +0 -0
- /package/dist/{dist-BMNEH377.js.map → dist-4SYTSJN2.js.map} +0 -0
- /package/dist/{interactive-ZXYNPRCT.js.map → interactive-7K5546RV.js.map} +0 -0
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
validateEvalFile,
|
|
12
12
|
validateFileReferences,
|
|
13
13
|
validateTargetsFile
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-H6WRFW2C.js";
|
|
15
15
|
import {
|
|
16
16
|
assembleLlmJudgePrompt,
|
|
17
17
|
buildPromptInputs,
|
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
toCamelCaseDeep,
|
|
28
28
|
toSnakeCaseDeep as toSnakeCaseDeep2,
|
|
29
29
|
trimBaselineResult
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-UJMO2T4J.js";
|
|
31
31
|
import {
|
|
32
32
|
__commonJS,
|
|
33
33
|
__esm,
|
|
@@ -4042,7 +4042,7 @@ var evalRunCommand = command({
|
|
|
4042
4042
|
},
|
|
4043
4043
|
handler: async (args) => {
|
|
4044
4044
|
if (args.evalPaths.length === 0 && process.stdin.isTTY) {
|
|
4045
|
-
const { launchInteractiveWizard } = await import("./interactive-
|
|
4045
|
+
const { launchInteractiveWizard } = await import("./interactive-7K5546RV.js");
|
|
4046
4046
|
await launchInteractiveWizard();
|
|
4047
4047
|
return;
|
|
4048
4048
|
}
|
|
@@ -5929,4 +5929,4 @@ export {
|
|
|
5929
5929
|
preprocessArgv,
|
|
5930
5930
|
runCli
|
|
5931
5931
|
};
|
|
5932
|
-
//# sourceMappingURL=chunk-
|
|
5932
|
+
//# sourceMappingURL=chunk-FIWNPMZ4.js.map
|
|
@@ -25,12 +25,12 @@ import {
|
|
|
25
25
|
subscribeToCopilotCliLogEntries,
|
|
26
26
|
subscribeToCopilotSdkLogEntries,
|
|
27
27
|
subscribeToPiLogEntries
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-UJMO2T4J.js";
|
|
29
29
|
|
|
30
30
|
// package.json
|
|
31
31
|
var package_default = {
|
|
32
32
|
name: "agentv",
|
|
33
|
-
version: "2.
|
|
33
|
+
version: "2.17.0",
|
|
34
34
|
description: "CLI entry point for AgentV",
|
|
35
35
|
type: "module",
|
|
36
36
|
repository: {
|
|
@@ -1472,7 +1472,7 @@ async function validateEvalFile(filePath) {
|
|
|
1472
1472
|
function validateWorkspaceRepoConfig(workspace, filePath, errors) {
|
|
1473
1473
|
const repos = workspace.repos;
|
|
1474
1474
|
const hooks = workspace.hooks;
|
|
1475
|
-
const afterEachHook = isObject(hooks) ? hooks.
|
|
1475
|
+
const afterEachHook = isObject(hooks) ? hooks.after_each : void 0;
|
|
1476
1476
|
const isolation = workspace.isolation;
|
|
1477
1477
|
if (Array.isArray(repos)) {
|
|
1478
1478
|
for (const repo of repos) {
|
|
@@ -1498,8 +1498,8 @@ function validateWorkspaceRepoConfig(workspace, filePath, errors) {
|
|
|
1498
1498
|
errors.push({
|
|
1499
1499
|
severity: "warning",
|
|
1500
1500
|
filePath,
|
|
1501
|
-
location: "workspace.hooks.
|
|
1502
|
-
message: `hooks.
|
|
1501
|
+
location: "workspace.hooks.after_each",
|
|
1502
|
+
message: `hooks.after_each.reset '${afterEachHook.reset}' has no effect without repos.`
|
|
1503
1503
|
});
|
|
1504
1504
|
}
|
|
1505
1505
|
}
|
|
@@ -1507,8 +1507,8 @@ function validateWorkspaceRepoConfig(workspace, filePath, errors) {
|
|
|
1507
1507
|
errors.push({
|
|
1508
1508
|
severity: "warning",
|
|
1509
1509
|
filePath,
|
|
1510
|
-
location: "workspace.hooks.
|
|
1511
|
-
message: "hooks.
|
|
1510
|
+
location: "workspace.hooks.after_each",
|
|
1511
|
+
message: "hooks.after_each.reset is redundant with isolation: per_test (each test gets a fresh workspace)."
|
|
1512
1512
|
});
|
|
1513
1513
|
}
|
|
1514
1514
|
}
|
|
@@ -3056,7 +3056,7 @@ async function runEvalCommand(input) {
|
|
|
3056
3056
|
const useFileExport = !!(options.otelFile || options.traceFile);
|
|
3057
3057
|
if (options.exportOtel || useFileExport) {
|
|
3058
3058
|
try {
|
|
3059
|
-
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-
|
|
3059
|
+
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-4SYTSJN2.js");
|
|
3060
3060
|
let endpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT;
|
|
3061
3061
|
let headers = {};
|
|
3062
3062
|
if (options.otelBackend) {
|
|
@@ -3343,4 +3343,4 @@ export {
|
|
|
3343
3343
|
selectTarget,
|
|
3344
3344
|
runEvalCommand
|
|
3345
3345
|
};
|
|
3346
|
-
//# sourceMappingURL=chunk-
|
|
3346
|
+
//# sourceMappingURL=chunk-H6WRFW2C.js.map
|