@wix/evalforge-evaluator 0.218.0 → 0.220.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 +5 -5
package/build/index.mjs
CHANGED
|
@@ -7272,7 +7272,10 @@ function resolveSystemAssertion(assertionId, params) {
|
|
|
7272
7272
|
minScore: params?.minScore,
|
|
7273
7273
|
model: params?.model,
|
|
7274
7274
|
maxTokens: params?.maxTokens,
|
|
7275
|
-
temperature: params?.temperature
|
|
7275
|
+
temperature: params?.temperature,
|
|
7276
|
+
...params?.scoringMode !== void 0 && {
|
|
7277
|
+
scoringMode: params.scoringMode
|
|
7278
|
+
}
|
|
7276
7279
|
};
|
|
7277
7280
|
break;
|
|
7278
7281
|
case "api_call":
|