@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.js
CHANGED
|
@@ -1368,7 +1368,9 @@ var EvalRunSchema = TenantEntitySchema.extend({
|
|
|
1368
1368
|
/** Rule IDs to enable for this run (optional) */
|
|
1369
1369
|
ruleIds: import_zod28.z.array(import_zod28.z.string()).optional(),
|
|
1370
1370
|
/** Tags used to select scenarios for this run (for traceability) */
|
|
1371
|
-
tags: import_zod28.z.array(import_zod28.z.string()).optional()
|
|
1371
|
+
tags: import_zod28.z.array(import_zod28.z.string()).optional(),
|
|
1372
|
+
/** How many times each scenario is executed within this eval run. Default: 1. Max: 20. */
|
|
1373
|
+
runsPerScenario: import_zod28.z.number().int().min(1).max(20).optional()
|
|
1372
1374
|
});
|
|
1373
1375
|
var CreateEvalRunInputSchema = EvalRunSchema.omit({
|
|
1374
1376
|
id: true,
|
|
@@ -1508,7 +1510,9 @@ var EvalRunResultSchema = import_zod30.z.object({
|
|
|
1508
1510
|
completedAt: import_zod30.z.string().optional(),
|
|
1509
1511
|
llmTrace: LLMTraceSchema.optional(),
|
|
1510
1512
|
/** Full conversation messages (only present in transit; stripped before DB storage) */
|
|
1511
|
-
conversation: import_zod30.z.array(ConversationMessageSchema).optional()
|
|
1513
|
+
conversation: import_zod30.z.array(ConversationMessageSchema).optional(),
|
|
1514
|
+
/** 0-based iteration index when a scenario is run multiple times within a single eval run */
|
|
1515
|
+
iterationIndex: import_zod30.z.number().int().min(0).optional()
|
|
1512
1516
|
});
|
|
1513
1517
|
var PromptResultSchema = import_zod30.z.object({
|
|
1514
1518
|
text: import_zod30.z.string(),
|