@wix/evalforge-types 0.46.0 → 0.47.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.mjs CHANGED
@@ -929,17 +929,17 @@ var WebhookIdentityType;
929
929
  })(WebhookIdentityType || (WebhookIdentityType = {}));
930
930
 
931
931
  // src/common/models.ts
932
- var AVAILABLE_MODEL_IDS = Object.values(
932
+ var AVAILABLE_CLAUDE_MODEL_IDS = Object.values(
933
933
  ClaudeModel
934
934
  ).filter(
935
935
  (v) => typeof v === "string" && v !== ClaudeModel.UNKNOWN_CLAUDE_MODEL
936
936
  );
937
937
  var PREFERRED_JUDGE_MODEL = "CLAUDE_4_5_HAIKU_1_0";
938
- var DEFAULT_JUDGE_MODEL = AVAILABLE_MODEL_IDS.includes(
938
+ var DEFAULT_JUDGE_MODEL = AVAILABLE_CLAUDE_MODEL_IDS.includes(
939
939
  PREFERRED_JUDGE_MODEL
940
- ) ? PREFERRED_JUDGE_MODEL : AVAILABLE_MODEL_IDS[0];
940
+ ) ? PREFERRED_JUDGE_MODEL : AVAILABLE_CLAUDE_MODEL_IDS[0];
941
941
  var ClaudeModelSchema = z4.enum(
942
- AVAILABLE_MODEL_IDS
942
+ AVAILABLE_CLAUDE_MODEL_IDS
943
943
  );
944
944
  var AVAILABLE_OPENAI_MODEL_IDS = Object.values(
945
945
  Model
@@ -950,7 +950,7 @@ var OpenAIModelSchema = z4.enum(
950
950
  AVAILABLE_OPENAI_MODEL_IDS
951
951
  );
952
952
  var ALL_AVAILABLE_MODEL_IDS = [
953
- ...AVAILABLE_MODEL_IDS,
953
+ ...AVAILABLE_CLAUDE_MODEL_IDS,
954
954
  ...AVAILABLE_OPENAI_MODEL_IDS
955
955
  ];
956
956
  var AnyModelSchema = z4.enum(
@@ -2265,7 +2265,7 @@ function getSystemAssertion(id) {
2265
2265
  export {
2266
2266
  AGENT_TYPE_LABELS,
2267
2267
  ALL_AVAILABLE_MODEL_IDS,
2268
- AVAILABLE_MODEL_IDS,
2268
+ AVAILABLE_CLAUDE_MODEL_IDS,
2269
2269
  AVAILABLE_OPENAI_MODEL_IDS,
2270
2270
  AVAILABLE_RUN_COMMANDS,
2271
2271
  AVAILABLE_TOOL_NAMES,