@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.js +2 -2
- package/build/index.js.map +2 -2
- package/build/index.mjs +2 -2
- package/build/index.mjs.map +2 -2
- package/build/types/common/models.d.ts +1 -1
- package/build/types/evaluation/eval-result.d.ts +1 -0
- package/build/types/evaluation/eval-run.d.ts +1 -0
- package/build/types/target/agent.d.ts +3 -0
- package/package.json +2 -2
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
|