@wix/evalforge-types 0.68.0 → 0.69.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 +5 -1
- package/build/index.js.map +2 -2
- package/build/index.mjs +5 -1
- package/build/index.mjs.map +2 -2
- package/build/types/evaluation/eval-run.d.ts +4 -0
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -1378,7 +1378,11 @@ var EvalRunSchema = TenantEntitySchema.extend({
|
|
|
1378
1378
|
runCommand: AgentRunCommandSchema.optional(),
|
|
1379
1379
|
systemPrompt: import_zod28.z.string().nullable().optional(),
|
|
1380
1380
|
modelConfig: ModelConfigSchema.optional()
|
|
1381
|
-
}).optional()
|
|
1381
|
+
}).optional(),
|
|
1382
|
+
/** UUID linking all runs in a comparison group */
|
|
1383
|
+
comparisonGroupId: import_zod28.z.string().optional(),
|
|
1384
|
+
/** Human-readable label for this variant (e.g., "MCP: Wix Stores") */
|
|
1385
|
+
comparisonLabel: import_zod28.z.string().optional()
|
|
1382
1386
|
});
|
|
1383
1387
|
var CreateEvalRunInputSchema = EvalRunSchema.omit({
|
|
1384
1388
|
id: true,
|