@wix/evalforge-types 0.51.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.mjs CHANGED
@@ -942,7 +942,6 @@ var WebhookIdentityType;
942
942
 
943
943
  // src/common/models.ts
944
944
  var ClaudeModel2 = {
945
- CLAUDE_3_7_SONNET_1_0: AnthropicModel.CLAUDE_3_7_SONNET_1_0,
946
945
  CLAUDE_4_SONNET_1_0: AnthropicModel.CLAUDE_4_SONNET_1_0,
947
946
  CLAUDE_4_OPUS_1_0: AnthropicModel.CLAUDE_4_OPUS_1_0,
948
947
  CLAUDE_4_5_SONNET_1_0: AnthropicModel.CLAUDE_4_5_SONNET_1_0,
@@ -996,7 +995,8 @@ var ModelConfigSchema = z4.object({
996
995
  nullToUndefined,
997
996
  z4.number().min(0).max(1).optional()
998
997
  ),
999
- maxTokens: z4.preprocess(nullToUndefined, z4.number().min(1).optional())
998
+ maxTokens: z4.preprocess(nullToUndefined, z4.number().min(1).optional()),
999
+ maxTurns: z4.preprocess(nullToUndefined, z4.number().int().min(1).optional())
1000
1000
  });
1001
1001
 
1002
1002
  // src/common/rule.ts