@agentv/core 4.23.0-next.1 → 4.24.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-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
package/dist/index.d.cts
CHANGED
|
@@ -3424,6 +3424,10 @@ interface ProgressEvent {
|
|
|
3424
3424
|
readonly score?: number;
|
|
3425
3425
|
/** Execution status classification for completed/failed tests */
|
|
3426
3426
|
readonly executionStatus?: ExecutionStatus;
|
|
3427
|
+
/** Candidate/agent execution duration in milliseconds */
|
|
3428
|
+
readonly durationMs?: number;
|
|
3429
|
+
/** Full eval duration in milliseconds, including grading/orchestration */
|
|
3430
|
+
readonly evalRunDurationMs?: number;
|
|
3427
3431
|
}
|
|
3428
3432
|
interface RunEvaluationOptions {
|
|
3429
3433
|
readonly testFilePath: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3424,6 +3424,10 @@ interface ProgressEvent {
|
|
|
3424
3424
|
readonly score?: number;
|
|
3425
3425
|
/** Execution status classification for completed/failed tests */
|
|
3426
3426
|
readonly executionStatus?: ExecutionStatus;
|
|
3427
|
+
/** Candidate/agent execution duration in milliseconds */
|
|
3428
|
+
readonly durationMs?: number;
|
|
3429
|
+
/** Full eval duration in milliseconds, including grading/orchestration */
|
|
3430
|
+
readonly evalRunDurationMs?: number;
|
|
3427
3431
|
}
|
|
3428
3432
|
interface RunEvaluationOptions {
|
|
3429
3433
|
readonly testFilePath: string;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
loadTsEvalFile,
|
|
3
3
|
loadTsEvalSuite
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-CUVG5O5P.js";
|
|
5
5
|
import "./chunk-4VLOUBFL.js";
|
|
6
6
|
import "./chunk-3WGHC7LC.js";
|
|
7
7
|
import "./chunk-PRNXHNLF.js";
|
|
@@ -9,4 +9,4 @@ export {
|
|
|
9
9
|
loadTsEvalFile,
|
|
10
10
|
loadTsEvalSuite
|
|
11
11
|
};
|
|
12
|
-
//# sourceMappingURL=ts-eval-loader-
|
|
12
|
+
//# sourceMappingURL=ts-eval-loader-SYQYQPMC.js.map
|