@wix/evalforge-evaluator 0.154.0 → 0.155.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/build/index.js +26 -3
- package/build/index.js.map +2 -2
- package/build/index.mjs +26 -3
- package/build/index.mjs.map +2 -2
- package/build/types/evaluation-loop.d.ts +6 -0
- package/package.json +2 -2
|
@@ -9,6 +9,12 @@ export interface EvaluationLoopResult {
|
|
|
9
9
|
completedExecutions: number;
|
|
10
10
|
totalExecutions: number;
|
|
11
11
|
erroredExecutions: number;
|
|
12
|
+
/**
|
|
13
|
+
* `outputText` of the first errored iteration (already prefixed with
|
|
14
|
+
* `"Execution error: "`). Captured so the entry-point can surface a
|
|
15
|
+
* representative error on the eval run row when every iteration errors.
|
|
16
|
+
*/
|
|
17
|
+
firstErrorMessage?: string;
|
|
12
18
|
}
|
|
13
19
|
/**
|
|
14
20
|
* Run all scenarios with iteration support.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-evaluator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.155.0",
|
|
4
4
|
"description": "EvalForge Evaluator",
|
|
5
5
|
"bin": "./build/index.js",
|
|
6
6
|
"files": [
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"artifactId": "evalforge-evaluator"
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
|
-
"falconPackageHash": "
|
|
66
|
+
"falconPackageHash": "e0b83ee130e8d5274146b5c3ee5b97833fc21ee92a74bb6539e463aa"
|
|
67
67
|
}
|