@wix/evalforge-types 0.79.0 → 0.80.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 +6 -2
- package/build/index.js.map +2 -2
- package/build/index.mjs +6 -2
- package/build/index.mjs.map +2 -2
- package/build/types/evaluation/eval-run.d.ts +3 -0
- package/package.json +2 -2
package/build/index.mjs
CHANGED
|
@@ -1646,14 +1646,18 @@ var EvalRunSchema = TenantEntitySchema.extend({
|
|
|
1646
1646
|
agentType: AgentTypeSchema.optional(),
|
|
1647
1647
|
runCommand: AgentRunCommandSchema.optional(),
|
|
1648
1648
|
systemPrompt: z30.string().nullable().optional(),
|
|
1649
|
-
|
|
1649
|
+
/** @deprecated retained for backward compat with stored snapshots */
|
|
1650
|
+
modelConfig: ModelConfigSchema.optional(),
|
|
1651
|
+
config: z30.record(z30.string(), z30.unknown()).optional()
|
|
1650
1652
|
}).optional(),
|
|
1651
1653
|
/** UUID linking all runs in a comparison group */
|
|
1652
1654
|
comparisonGroupId: z30.string().optional(),
|
|
1653
1655
|
/** Human-readable label for this variant (e.g., "MCP: Wix Stores") */
|
|
1654
1656
|
comparisonLabel: z30.string().optional(),
|
|
1655
1657
|
/** LLM-generated analysis of the completed run */
|
|
1656
|
-
runAnalysis: RunAnalysisSchema.optional()
|
|
1658
|
+
runAnalysis: RunAnalysisSchema.optional(),
|
|
1659
|
+
/** IDs of folders this run belongs to (read-only, managed via AddRunToFolder / RemoveRunFromFolder) */
|
|
1660
|
+
folderIds: z30.array(z30.string()).optional()
|
|
1657
1661
|
});
|
|
1658
1662
|
var CreateEvalRunInputSchema = EvalRunSchema.omit({
|
|
1659
1663
|
id: true,
|