@wix/evalforge-types 0.67.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;
|
|
@@ -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;
|
|
@@ -540,6 +541,23 @@ export declare const EvalRunSchema: z.ZodObject<{
|
|
|
540
541
|
ruleIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
541
542
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
542
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>>;
|
|
543
561
|
}, z.core.$strip>;
|
|
544
562
|
export type EvalRun = z.infer<typeof EvalRunSchema>;
|
|
545
563
|
/**
|
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
|
}
|