@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.js
CHANGED
|
@@ -1133,7 +1133,6 @@ var WebhookIdentityType;
|
|
|
1133
1133
|
|
|
1134
1134
|
// src/common/models.ts
|
|
1135
1135
|
var ClaudeModel2 = {
|
|
1136
|
-
CLAUDE_3_7_SONNET_1_0: AnthropicModel.CLAUDE_3_7_SONNET_1_0,
|
|
1137
1136
|
CLAUDE_4_SONNET_1_0: AnthropicModel.CLAUDE_4_SONNET_1_0,
|
|
1138
1137
|
CLAUDE_4_OPUS_1_0: AnthropicModel.CLAUDE_4_OPUS_1_0,
|
|
1139
1138
|
CLAUDE_4_5_SONNET_1_0: AnthropicModel.CLAUDE_4_5_SONNET_1_0,
|
|
@@ -1187,7 +1186,8 @@ var ModelConfigSchema = import_zod4.z.object({
|
|
|
1187
1186
|
nullToUndefined,
|
|
1188
1187
|
import_zod4.z.number().min(0).max(1).optional()
|
|
1189
1188
|
),
|
|
1190
|
-
maxTokens: import_zod4.z.preprocess(nullToUndefined, import_zod4.z.number().min(1).optional())
|
|
1189
|
+
maxTokens: import_zod4.z.preprocess(nullToUndefined, import_zod4.z.number().min(1).optional()),
|
|
1190
|
+
maxTurns: import_zod4.z.preprocess(nullToUndefined, import_zod4.z.number().int().min(1).optional())
|
|
1191
1191
|
});
|
|
1192
1192
|
|
|
1193
1193
|
// src/common/rule.ts
|