agentv 4.7.0 → 4.8.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-VEAOMKNS.js → chunk-A6W3KOCS.js} +17 -11
- package/dist/chunk-A6W3KOCS.js.map +1 -0
- package/dist/{chunk-I6UE4LHZ.js → chunk-H4GQXK5M.js} +85 -4
- package/dist/chunk-H4GQXK5M.js.map +1 -0
- package/dist/{chunk-AX4CQS45.js → chunk-QBZJSQXV.js} +72 -73
- package/dist/chunk-QBZJSQXV.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/{dist-XRVHRBJF.js → dist-QXVR2ZRH.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/{interactive-UBEMNJZG.js → interactive-IRYNIFCY.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-AX4CQS45.js.map +0 -1
- package/dist/chunk-I6UE4LHZ.js.map +0 -1
- package/dist/chunk-VEAOMKNS.js.map +0 -1
- /package/dist/{dist-XRVHRBJF.js.map → dist-QXVR2ZRH.js.map} +0 -0
- /package/dist/{interactive-UBEMNJZG.js.map → interactive-IRYNIFCY.js.map} +0 -0
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
validateFileReferences,
|
|
28
28
|
validateTargetsFile,
|
|
29
29
|
writeArtifactsFromResults
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-QBZJSQXV.js";
|
|
31
31
|
import {
|
|
32
32
|
DEFAULT_CATEGORY,
|
|
33
33
|
DEFAULT_THRESHOLD,
|
|
@@ -60,7 +60,7 @@ import {
|
|
|
60
60
|
toTranscriptJsonLine,
|
|
61
61
|
transpileEvalYamlFile,
|
|
62
62
|
trimBaselineResult
|
|
63
|
-
} from "./chunk-
|
|
63
|
+
} from "./chunk-H4GQXK5M.js";
|
|
64
64
|
import {
|
|
65
65
|
__commonJS,
|
|
66
66
|
__require,
|
|
@@ -3740,18 +3740,23 @@ var evalRunCommand = command({
|
|
|
3740
3740
|
out: option({
|
|
3741
3741
|
type: optional(string),
|
|
3742
3742
|
long: "out",
|
|
3743
|
-
description: "Write results to the specified path"
|
|
3743
|
+
description: "[Deprecated: use --output] Write results to the specified path"
|
|
3744
3744
|
}),
|
|
3745
|
-
output:
|
|
3746
|
-
type:
|
|
3745
|
+
output: option({
|
|
3746
|
+
type: optional(string),
|
|
3747
3747
|
long: "output",
|
|
3748
3748
|
short: "o",
|
|
3749
|
-
description: "
|
|
3749
|
+
description: "Artifact directory for run output (index.jsonl, benchmark.json, per-test grading/timing)"
|
|
3750
3750
|
}),
|
|
3751
3751
|
outputFormat: option({
|
|
3752
3752
|
type: optional(string),
|
|
3753
3753
|
long: "output-format",
|
|
3754
|
-
description: "Output format: 'jsonl', 'yaml', or 'html' (default: jsonl)"
|
|
3754
|
+
description: "[Deprecated] Output format: 'jsonl', 'yaml', or 'html' (default: jsonl)"
|
|
3755
|
+
}),
|
|
3756
|
+
export: multioption({
|
|
3757
|
+
type: array(string),
|
|
3758
|
+
long: "export",
|
|
3759
|
+
description: "Write additional output file(s). Format inferred from extension: .jsonl, .json, .xml, .yaml, .html (repeatable)"
|
|
3755
3760
|
}),
|
|
3756
3761
|
dryRun: flag({
|
|
3757
3762
|
long: "dry-run",
|
|
@@ -3841,12 +3846,12 @@ var evalRunCommand = command({
|
|
|
3841
3846
|
benchmarkJson: option({
|
|
3842
3847
|
type: optional(string),
|
|
3843
3848
|
long: "benchmark-json",
|
|
3844
|
-
description: "Write Agent Skills benchmark.json to the specified path"
|
|
3849
|
+
description: "[Deprecated: benchmark.json is included in artifact dir] Write Agent Skills benchmark.json to the specified path"
|
|
3845
3850
|
}),
|
|
3846
3851
|
artifacts: option({
|
|
3847
3852
|
type: optional(string),
|
|
3848
3853
|
long: "artifacts",
|
|
3849
|
-
description: "Write companion artifacts
|
|
3854
|
+
description: "[Deprecated: use --output] Write companion artifacts to the specified directory"
|
|
3850
3855
|
}),
|
|
3851
3856
|
graderTarget: option({
|
|
3852
3857
|
type: optional(string),
|
|
@@ -3886,7 +3891,7 @@ var evalRunCommand = command({
|
|
|
3886
3891
|
},
|
|
3887
3892
|
handler: async (args) => {
|
|
3888
3893
|
if (args.evalPaths.length === 0 && process.stdin.isTTY) {
|
|
3889
|
-
const { launchInteractiveWizard } = await import("./interactive-
|
|
3894
|
+
const { launchInteractiveWizard } = await import("./interactive-IRYNIFCY.js");
|
|
3890
3895
|
await launchInteractiveWizard();
|
|
3891
3896
|
return;
|
|
3892
3897
|
}
|
|
@@ -3899,6 +3904,7 @@ var evalRunCommand = command({
|
|
|
3899
3904
|
out: args.out,
|
|
3900
3905
|
output: args.output,
|
|
3901
3906
|
outputFormat: args.outputFormat,
|
|
3907
|
+
export: args.export,
|
|
3902
3908
|
dryRun: args.dryRun,
|
|
3903
3909
|
dryRunDelay: args.dryRunDelay,
|
|
3904
3910
|
dryRunDelayMin: args.dryRunDelayMin,
|
|
@@ -9398,4 +9404,4 @@ export {
|
|
|
9398
9404
|
preprocessArgv,
|
|
9399
9405
|
runCli
|
|
9400
9406
|
};
|
|
9401
|
-
//# sourceMappingURL=chunk-
|
|
9407
|
+
//# sourceMappingURL=chunk-A6W3KOCS.js.map
|