@agentv/core 4.23.0-next.1 → 4.24.0-next.1
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-3SBKNIB6.js → chunk-CUVG5O5P.js} +11 -6
- package/dist/chunk-CUVG5O5P.js.map +1 -0
- package/dist/index.cjs +8 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -1
- package/dist/{ts-eval-loader-HT7NCO4M.js → ts-eval-loader-SYQYQPMC.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-3SBKNIB6.js.map +0 -1
- /package/dist/{ts-eval-loader-HT7NCO4M.js.map → ts-eval-loader-SYQYQPMC.js.map} +0 -0
|
@@ -16105,7 +16105,7 @@ async function loadTestSuite(evalFilePath, repoRoot, options) {
|
|
|
16105
16105
|
return { tests: await loadTestsFromAgentSkills(evalFilePath) };
|
|
16106
16106
|
}
|
|
16107
16107
|
if (format === "typescript") {
|
|
16108
|
-
const { loadTsEvalSuite: loadTsEvalSuite2 } = await import("./ts-eval-loader-
|
|
16108
|
+
const { loadTsEvalSuite: loadTsEvalSuite2 } = await import("./ts-eval-loader-SYQYQPMC.js");
|
|
16109
16109
|
return loadTsEvalSuite2(evalFilePath, resolveToAbsolutePath(repoRoot), options);
|
|
16110
16110
|
}
|
|
16111
16111
|
const { tests, parsed, suiteWorkspacePath } = await loadTestsFromYaml(
|
|
@@ -16140,7 +16140,7 @@ async function loadTests(evalFilePath, repoRoot, options) {
|
|
|
16140
16140
|
return loadTestsFromAgentSkills(evalFilePath);
|
|
16141
16141
|
}
|
|
16142
16142
|
if (format === "typescript") {
|
|
16143
|
-
const { loadTsEvalSuite: loadTsEvalSuite2 } = await import("./ts-eval-loader-
|
|
16143
|
+
const { loadTsEvalSuite: loadTsEvalSuite2 } = await import("./ts-eval-loader-SYQYQPMC.js");
|
|
16144
16144
|
const suite = await loadTsEvalSuite2(evalFilePath, resolveToAbsolutePath(repoRoot), options);
|
|
16145
16145
|
return suite.tests;
|
|
16146
16146
|
}
|
|
@@ -17515,7 +17515,9 @@ async function runEvaluation(options) {
|
|
|
17515
17515
|
completedAt: Date.now(),
|
|
17516
17516
|
error: result.error,
|
|
17517
17517
|
score: result.score,
|
|
17518
|
-
executionStatus: result.executionStatus
|
|
17518
|
+
executionStatus: result.executionStatus,
|
|
17519
|
+
durationMs: result.durationMs,
|
|
17520
|
+
evalRunDurationMs: result.evalRun?.durationMs
|
|
17519
17521
|
});
|
|
17520
17522
|
}
|
|
17521
17523
|
if (onResult) {
|
|
@@ -17829,7 +17831,8 @@ async function runBatchEvaluation(options) {
|
|
|
17829
17831
|
completedAt: Date.now(),
|
|
17830
17832
|
error: error instanceof Error ? error.message : String(error),
|
|
17831
17833
|
score: errorResult.score,
|
|
17832
|
-
executionStatus: errorResult.executionStatus
|
|
17834
|
+
executionStatus: errorResult.executionStatus,
|
|
17835
|
+
evalRunDurationMs: errorResult.evalRun?.durationMs
|
|
17833
17836
|
});
|
|
17834
17837
|
}
|
|
17835
17838
|
continue;
|
|
@@ -17847,7 +17850,9 @@ async function runBatchEvaluation(options) {
|
|
|
17847
17850
|
completedAt: Date.now(),
|
|
17848
17851
|
error: result.error,
|
|
17849
17852
|
score: result.score,
|
|
17850
|
-
executionStatus: result.executionStatus
|
|
17853
|
+
executionStatus: result.executionStatus,
|
|
17854
|
+
durationMs: result.durationMs,
|
|
17855
|
+
evalRunDurationMs: result.evalRun?.durationMs
|
|
17851
17856
|
});
|
|
17852
17857
|
}
|
|
17853
17858
|
}
|
|
@@ -19949,4 +19954,4 @@ export {
|
|
|
19949
19954
|
loadTestById,
|
|
19950
19955
|
loadEvalCaseById
|
|
19951
19956
|
};
|
|
19952
|
-
//# sourceMappingURL=chunk-
|
|
19957
|
+
//# sourceMappingURL=chunk-CUVG5O5P.js.map
|