@wix/evalforge-evaluator 0.50.0 → 0.52.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 CHANGED
@@ -228,6 +228,14 @@ function resolveSystemAssertion(assertionId, params) {
228
228
  expectedExitCode: params?.expectedExitCode ?? void 0
229
229
  };
230
230
  break;
231
+ case "llm_judge":
232
+ baseAssertion = {
233
+ type: "llm_judge",
234
+ prompt: params?.prompt ?? "",
235
+ systemPrompt: params?.systemPrompt,
236
+ minScore: params?.minScore
237
+ };
238
+ break;
231
239
  default:
232
240
  baseAssertion = { type: "llm_judge", prompt: "" };
233
241
  }