@wix/evalforge-evaluator 0.219.0 → 0.221.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 +4 -1
- package/build/index.js.map +2 -2
- package/build/index.mjs +4 -1
- package/build/index.mjs.map +2 -2
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -7259,7 +7259,10 @@ function resolveSystemAssertion(assertionId, params) {
|
|
|
7259
7259
|
minScore: params?.minScore,
|
|
7260
7260
|
model: params?.model,
|
|
7261
7261
|
maxTokens: params?.maxTokens,
|
|
7262
|
-
temperature: params?.temperature
|
|
7262
|
+
temperature: params?.temperature,
|
|
7263
|
+
...params?.scoringMode !== void 0 && {
|
|
7264
|
+
scoringMode: params.scoringMode
|
|
7265
|
+
}
|
|
7263
7266
|
};
|
|
7264
7267
|
break;
|
|
7265
7268
|
case "api_call":
|