@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
|
@@ -558,6 +558,8 @@ export declare const EvalRunSchema: z.ZodObject<{
|
|
|
558
558
|
maxTurns: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
559
559
|
}, z.core.$strip>>;
|
|
560
560
|
}, z.core.$strip>>;
|
|
561
|
+
comparisonGroupId: z.ZodOptional<z.ZodString>;
|
|
562
|
+
comparisonLabel: z.ZodOptional<z.ZodString>;
|
|
561
563
|
}, z.core.$strip>;
|
|
562
564
|
export type EvalRun = z.infer<typeof EvalRunSchema>;
|
|
563
565
|
/**
|
|
@@ -685,6 +687,8 @@ export declare const CreateEvalRunInputSchema: z.ZodObject<{
|
|
|
685
687
|
jobError: z.ZodOptional<z.ZodString>;
|
|
686
688
|
jobStatusCheckedAt: z.ZodOptional<z.ZodString>;
|
|
687
689
|
runsPerScenario: z.ZodOptional<z.ZodNumber>;
|
|
690
|
+
comparisonGroupId: z.ZodOptional<z.ZodString>;
|
|
691
|
+
comparisonLabel: z.ZodOptional<z.ZodString>;
|
|
688
692
|
scenarioIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
689
693
|
}, z.core.$strip>;
|
|
690
694
|
export type CreateEvalRunInput = z.infer<typeof CreateEvalRunInputSchema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.69.0",
|
|
4
4
|
"description": "Unified types for EvalForge agent evaluation system",
|
|
5
5
|
"files": [
|
|
6
6
|
"build"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"artifactId": "evalforge-types"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "ed54412ea000a3fda6eb44b951270bcf243b0c3dee6bca814014183c"
|
|
50
50
|
}
|