@wix/evalforge-types 0.66.0 → 0.68.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.
|
@@ -60,6 +60,7 @@ export declare const EvalRunResultSchema: z.ZodObject<{
|
|
|
60
60
|
skillVersion: z.ZodOptional<z.ZodString>;
|
|
61
61
|
scenarioId: z.ZodString;
|
|
62
62
|
scenarioName: z.ZodString;
|
|
63
|
+
triggerPrompt: z.ZodOptional<z.ZodString>;
|
|
63
64
|
modelConfig: z.ZodOptional<z.ZodObject<{
|
|
64
65
|
model: z.ZodEnum<{
|
|
65
66
|
[x: string]: string;
|
|
@@ -223,6 +224,7 @@ export declare const EvalRunResultSchema: z.ZodObject<{
|
|
|
223
224
|
}, z.core.$strip>], "type">>;
|
|
224
225
|
timestamp: z.ZodString;
|
|
225
226
|
}, z.core.$strip>>>;
|
|
227
|
+
iterationIndex: z.ZodOptional<z.ZodNumber>;
|
|
226
228
|
}, z.core.$strip>;
|
|
227
229
|
export type EvalRunResult = z.infer<typeof EvalRunResultSchema>;
|
|
228
230
|
/**
|
|
@@ -254,6 +254,7 @@ export declare const EvalRunSchema: z.ZodObject<{
|
|
|
254
254
|
skillVersion: z.ZodOptional<z.ZodString>;
|
|
255
255
|
scenarioId: z.ZodString;
|
|
256
256
|
scenarioName: z.ZodString;
|
|
257
|
+
triggerPrompt: z.ZodOptional<z.ZodString>;
|
|
257
258
|
modelConfig: z.ZodOptional<z.ZodObject<{
|
|
258
259
|
model: z.ZodEnum<{
|
|
259
260
|
[x: string]: string;
|
|
@@ -417,6 +418,7 @@ export declare const EvalRunSchema: z.ZodObject<{
|
|
|
417
418
|
}, z.core.$strip>], "type">>;
|
|
418
419
|
timestamp: z.ZodString;
|
|
419
420
|
}, z.core.$strip>>>;
|
|
421
|
+
iterationIndex: z.ZodOptional<z.ZodNumber>;
|
|
420
422
|
}, z.core.$strip>>>;
|
|
421
423
|
aggregateMetrics: z.ZodObject<{
|
|
422
424
|
totalAssertions: z.ZodNumber;
|
|
@@ -538,6 +540,24 @@ export declare const EvalRunSchema: z.ZodObject<{
|
|
|
538
540
|
subAgentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
539
541
|
ruleIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
540
542
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
543
|
+
runsPerScenario: z.ZodOptional<z.ZodNumber>;
|
|
544
|
+
agentSnapshot: z.ZodOptional<z.ZodObject<{
|
|
545
|
+
name: z.ZodOptional<z.ZodString>;
|
|
546
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
547
|
+
cli: "cli";
|
|
548
|
+
sdk: "sdk";
|
|
549
|
+
}>>;
|
|
550
|
+
runCommand: z.ZodOptional<z.ZodEnum<typeof import("../target/agent.js").AgentRunCommand>>;
|
|
551
|
+
systemPrompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
552
|
+
modelConfig: z.ZodOptional<z.ZodObject<{
|
|
553
|
+
model: z.ZodEnum<{
|
|
554
|
+
[x: string]: string;
|
|
555
|
+
}>;
|
|
556
|
+
temperature: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
557
|
+
maxTokens: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
558
|
+
maxTurns: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
559
|
+
}, z.core.$strip>>;
|
|
560
|
+
}, z.core.$strip>>;
|
|
541
561
|
}, z.core.$strip>;
|
|
542
562
|
export type EvalRun = z.infer<typeof EvalRunSchema>;
|
|
543
563
|
/**
|
|
@@ -664,6 +684,7 @@ export declare const CreateEvalRunInputSchema: z.ZodObject<{
|
|
|
664
684
|
jobStatus: z.ZodOptional<z.ZodString>;
|
|
665
685
|
jobError: z.ZodOptional<z.ZodString>;
|
|
666
686
|
jobStatusCheckedAt: z.ZodOptional<z.ZodString>;
|
|
687
|
+
runsPerScenario: z.ZodOptional<z.ZodNumber>;
|
|
667
688
|
scenarioIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
668
689
|
}, z.core.$strip>;
|
|
669
690
|
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.68.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": "e4412ad763ca9d048b11048eb13e0ac4f7c76f33cdc5573edf47ff05"
|
|
50
50
|
}
|