@wix/evalforge-types 0.66.0 → 0.67.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
|
@@ -1159,7 +1159,9 @@ var EvalRunSchema = TenantEntitySchema.extend({
|
|
|
1159
1159
|
/** Rule IDs to enable for this run (optional) */
|
|
1160
1160
|
ruleIds: z28.array(z28.string()).optional(),
|
|
1161
1161
|
/** Tags used to select scenarios for this run (for traceability) */
|
|
1162
|
-
tags: z28.array(z28.string()).optional()
|
|
1162
|
+
tags: z28.array(z28.string()).optional(),
|
|
1163
|
+
/** How many times each scenario is executed within this eval run. Default: 1. Max: 20. */
|
|
1164
|
+
runsPerScenario: z28.number().int().min(1).max(20).optional()
|
|
1163
1165
|
});
|
|
1164
1166
|
var CreateEvalRunInputSchema = EvalRunSchema.omit({
|
|
1165
1167
|
id: true,
|
|
@@ -1299,7 +1301,9 @@ var EvalRunResultSchema = z30.object({
|
|
|
1299
1301
|
completedAt: z30.string().optional(),
|
|
1300
1302
|
llmTrace: LLMTraceSchema.optional(),
|
|
1301
1303
|
/** Full conversation messages (only present in transit; stripped before DB storage) */
|
|
1302
|
-
conversation: z30.array(ConversationMessageSchema).optional()
|
|
1304
|
+
conversation: z30.array(ConversationMessageSchema).optional(),
|
|
1305
|
+
/** 0-based iteration index when a scenario is run multiple times within a single eval run */
|
|
1306
|
+
iterationIndex: z30.number().int().min(0).optional()
|
|
1303
1307
|
});
|
|
1304
1308
|
var PromptResultSchema = z30.object({
|
|
1305
1309
|
text: z30.string(),
|