@wix/evalforge-types 0.32.0 → 0.34.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 +6 -0
- package/build/index.js.map +2 -2
- package/build/index.mjs +5 -0
- package/build/index.mjs.map +2 -2
- package/build/types/common/models.d.ts +1 -0
- package/package.json +3 -3
package/build/index.mjs
CHANGED
|
@@ -958,6 +958,10 @@ var AVAILABLE_MODEL_IDS = Object.values(
|
|
|
958
958
|
).filter(
|
|
959
959
|
(v) => typeof v === "string" && v !== import_types.ClaudeModel.UNKNOWN_CLAUDE_MODEL
|
|
960
960
|
);
|
|
961
|
+
var PREFERRED_JUDGE_MODEL = "CLAUDE_4_5_HAIKU_1_0";
|
|
962
|
+
var DEFAULT_JUDGE_MODEL = AVAILABLE_MODEL_IDS.includes(
|
|
963
|
+
PREFERRED_JUDGE_MODEL
|
|
964
|
+
) ? PREFERRED_JUDGE_MODEL : AVAILABLE_MODEL_IDS[0];
|
|
961
965
|
var ClaudeModelSchema = z4.enum(
|
|
962
966
|
AVAILABLE_MODEL_IDS
|
|
963
967
|
);
|
|
@@ -2104,6 +2108,7 @@ export {
|
|
|
2104
2108
|
CreateTestScenarioInputSchema,
|
|
2105
2109
|
CreateTestSuiteInputSchema,
|
|
2106
2110
|
CustomAssertionSchema,
|
|
2111
|
+
DEFAULT_JUDGE_MODEL,
|
|
2107
2112
|
DiffContentSchema,
|
|
2108
2113
|
DiffLineSchema,
|
|
2109
2114
|
DiffLineTypeSchema,
|