agentv 4.15.3 → 4.15.4
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-P2UXBHIA.js → chunk-CK47W2B5.js} +9 -4
- package/dist/chunk-CK47W2B5.js.map +1 -0
- package/dist/{chunk-6X2UFVGI.js → chunk-K4QF5TNX.js} +5 -2
- package/dist/chunk-K4QF5TNX.js.map +1 -0
- package/dist/{chunk-NXZLEIAG.js → chunk-TT36K77B.js} +18 -12
- package/dist/chunk-TT36K77B.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/{dist-7ZYP7EBD.js → dist-ZVTERRJS.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/{interactive-QOOK2KED.js → interactive-RXDJ5OXY.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-6X2UFVGI.js.map +0 -1
- package/dist/chunk-NXZLEIAG.js.map +0 -1
- package/dist/chunk-P2UXBHIA.js.map +0 -1
- /package/dist/{dist-7ZYP7EBD.js.map → dist-ZVTERRJS.js.map} +0 -0
- /package/dist/{interactive-QOOK2KED.js.map → interactive-RXDJ5OXY.js.map} +0 -0
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
validateFileReferences,
|
|
43
43
|
validateTargetsFile,
|
|
44
44
|
writeArtifactsFromResults
|
|
45
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-TT36K77B.js";
|
|
46
46
|
import {
|
|
47
47
|
DEFAULT_CATEGORY,
|
|
48
48
|
DEFAULT_THRESHOLD,
|
|
@@ -76,7 +76,7 @@ import {
|
|
|
76
76
|
toTranscriptJsonLines,
|
|
77
77
|
transpileEvalYamlFile,
|
|
78
78
|
trimBaselineResult
|
|
79
|
-
} from "./chunk-
|
|
79
|
+
} from "./chunk-K4QF5TNX.js";
|
|
80
80
|
import {
|
|
81
81
|
__commonJS,
|
|
82
82
|
__require,
|
|
@@ -3833,6 +3833,10 @@ var evalRunCommand = command({
|
|
|
3833
3833
|
long: "workspace-path",
|
|
3834
3834
|
description: "Static workspace directory path (used when workspace mode is static)"
|
|
3835
3835
|
}),
|
|
3836
|
+
keepWorkspaces: flag({
|
|
3837
|
+
long: "keep-workspaces",
|
|
3838
|
+
description: "Preserve per-test workspaces after eval (default: keep on failure, cleanup on success)"
|
|
3839
|
+
}),
|
|
3836
3840
|
otelFile: option({
|
|
3837
3841
|
type: optional(string),
|
|
3838
3842
|
long: "otel-file",
|
|
@@ -3912,7 +3916,7 @@ var evalRunCommand = command({
|
|
|
3912
3916
|
},
|
|
3913
3917
|
handler: async (args) => {
|
|
3914
3918
|
if (args.evalPaths.length === 0 && process.stdin.isTTY) {
|
|
3915
|
-
const { launchInteractiveWizard } = await import("./interactive-
|
|
3919
|
+
const { launchInteractiveWizard } = await import("./interactive-RXDJ5OXY.js");
|
|
3916
3920
|
await launchInteractiveWizard();
|
|
3917
3921
|
return;
|
|
3918
3922
|
}
|
|
@@ -3938,6 +3942,7 @@ var evalRunCommand = command({
|
|
|
3938
3942
|
verbose: args.verbose,
|
|
3939
3943
|
workspaceMode: args.workspaceMode,
|
|
3940
3944
|
workspacePath: args.workspacePath,
|
|
3945
|
+
keepWorkspaces: args.keepWorkspaces,
|
|
3941
3946
|
trace: false,
|
|
3942
3947
|
otelFile: args.otelFile,
|
|
3943
3948
|
exportOtel: args.exportOtel,
|
|
@@ -10061,4 +10066,4 @@ export {
|
|
|
10061
10066
|
preprocessArgv,
|
|
10062
10067
|
runCli
|
|
10063
10068
|
};
|
|
10064
|
-
//# sourceMappingURL=chunk-
|
|
10069
|
+
//# sourceMappingURL=chunk-CK47W2B5.js.map
|