@wix/evalforge-types 0.51.0 → 0.53.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 +23 -2
- package/build/index.js.map +2 -2
- package/build/index.mjs +20 -2
- package/build/index.mjs.map +2 -2
- package/build/types/common/models.d.ts +1 -1
- package/build/types/evaluation/eval-result.d.ts +1 -0
- package/build/types/evaluation/eval-run.d.ts +1 -0
- package/build/types/target/agent.d.ts +3 -0
- package/build/types/target/skill.d.ts +46 -0
- package/package.json +2 -2
|
@@ -7,7 +7,6 @@ import { AnthropicModel as _AnthropicModel, Model as _OpenAIModel } from '@wix/a
|
|
|
7
7
|
* Update these explicitly when new models become available.
|
|
8
8
|
*/
|
|
9
9
|
export declare const ClaudeModel: {
|
|
10
|
-
readonly CLAUDE_3_7_SONNET_1_0: _AnthropicModel.CLAUDE_3_7_SONNET_1_0;
|
|
11
10
|
readonly CLAUDE_4_SONNET_1_0: _AnthropicModel.CLAUDE_4_SONNET_1_0;
|
|
12
11
|
readonly CLAUDE_4_OPUS_1_0: _AnthropicModel.CLAUDE_4_OPUS_1_0;
|
|
13
12
|
readonly CLAUDE_4_5_SONNET_1_0: _AnthropicModel.CLAUDE_4_5_SONNET_1_0;
|
|
@@ -57,5 +56,6 @@ export declare const ModelConfigSchema: z.ZodObject<{
|
|
|
57
56
|
}>;
|
|
58
57
|
temperature: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
59
58
|
maxTokens: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
59
|
+
maxTurns: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
60
60
|
}, z.core.$strip>;
|
|
61
61
|
export type ModelConfig = z.infer<typeof ModelConfigSchema>;
|
|
@@ -65,6 +65,7 @@ export declare const EvalRunResultSchema: z.ZodObject<{
|
|
|
65
65
|
}>;
|
|
66
66
|
temperature: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
67
67
|
maxTokens: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
68
|
+
maxTurns: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
68
69
|
}, z.core.$strip>>;
|
|
69
70
|
assertionResults: z.ZodArray<z.ZodObject<{
|
|
70
71
|
id: z.ZodString;
|
|
@@ -254,6 +254,7 @@ export declare const EvalRunSchema: z.ZodObject<{
|
|
|
254
254
|
}>;
|
|
255
255
|
temperature: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
256
256
|
maxTokens: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
257
|
+
maxTurns: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
257
258
|
}, z.core.$strip>>;
|
|
258
259
|
assertionResults: z.ZodArray<z.ZodObject<{
|
|
259
260
|
id: z.ZodString;
|
|
@@ -60,6 +60,7 @@ export declare const AgentSchema: z.ZodObject<{
|
|
|
60
60
|
}>;
|
|
61
61
|
temperature: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
62
62
|
maxTokens: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
63
|
+
maxTurns: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
63
64
|
}, z.core.$strip>>;
|
|
64
65
|
systemPrompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
65
66
|
}, z.core.$strip>;
|
|
@@ -82,6 +83,7 @@ export declare const CreateAgentInputSchema: z.ZodObject<{
|
|
|
82
83
|
}>;
|
|
83
84
|
temperature: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
84
85
|
maxTokens: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
86
|
+
maxTurns: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
85
87
|
}, z.core.$strip>>;
|
|
86
88
|
systemPrompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
87
89
|
}, z.core.$strip>;
|
|
@@ -105,6 +107,7 @@ export declare const UpdateAgentInputSchema: z.ZodObject<{
|
|
|
105
107
|
}>;
|
|
106
108
|
temperature: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
107
109
|
maxTokens: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
110
|
+
maxTurns: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodNumber>>;
|
|
108
111
|
}, z.core.$strip>>>;
|
|
109
112
|
systemPrompt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
110
113
|
}, z.core.$strip>;
|
|
@@ -262,3 +262,49 @@ export declare const SkillWithLatestVersionSchema: z.ZodObject<{
|
|
|
262
262
|
}, z.core.$strip>>;
|
|
263
263
|
}, z.core.$strip>;
|
|
264
264
|
export type SkillWithLatestVersion = z.infer<typeof SkillWithLatestVersionSchema>;
|
|
265
|
+
/**
|
|
266
|
+
* Input for bulk-importing skills from a parent directory in GitHub.
|
|
267
|
+
* The source path should point to a directory containing skill subdirectories.
|
|
268
|
+
*/
|
|
269
|
+
export declare const BulkImportSkillsInputSchema: z.ZodObject<{
|
|
270
|
+
source: z.ZodObject<{
|
|
271
|
+
owner: z.ZodString;
|
|
272
|
+
repo: z.ZodString;
|
|
273
|
+
path: z.ZodString;
|
|
274
|
+
ref: z.ZodString;
|
|
275
|
+
}, z.core.$strip>;
|
|
276
|
+
}, z.core.$strip>;
|
|
277
|
+
export type BulkImportSkillsInput = z.infer<typeof BulkImportSkillsInputSchema>;
|
|
278
|
+
/**
|
|
279
|
+
* Per-skill result from a bulk import operation.
|
|
280
|
+
*/
|
|
281
|
+
export declare const BulkImportResultItemSchema: z.ZodObject<{
|
|
282
|
+
name: z.ZodString;
|
|
283
|
+
status: z.ZodEnum<{
|
|
284
|
+
created: "created";
|
|
285
|
+
skipped: "skipped";
|
|
286
|
+
failed: "failed";
|
|
287
|
+
}>;
|
|
288
|
+
skillId: z.ZodOptional<z.ZodString>;
|
|
289
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
290
|
+
}, z.core.$strip>;
|
|
291
|
+
export type BulkImportResultItem = z.infer<typeof BulkImportResultItemSchema>;
|
|
292
|
+
/**
|
|
293
|
+
* Full response from a bulk import operation.
|
|
294
|
+
*/
|
|
295
|
+
export declare const BulkImportResultSchema: z.ZodObject<{
|
|
296
|
+
created: z.ZodNumber;
|
|
297
|
+
skipped: z.ZodNumber;
|
|
298
|
+
failed: z.ZodNumber;
|
|
299
|
+
items: z.ZodArray<z.ZodObject<{
|
|
300
|
+
name: z.ZodString;
|
|
301
|
+
status: z.ZodEnum<{
|
|
302
|
+
created: "created";
|
|
303
|
+
skipped: "skipped";
|
|
304
|
+
failed: "failed";
|
|
305
|
+
}>;
|
|
306
|
+
skillId: z.ZodOptional<z.ZodString>;
|
|
307
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
308
|
+
}, z.core.$strip>>;
|
|
309
|
+
}, z.core.$strip>;
|
|
310
|
+
export type BulkImportResult = z.infer<typeof BulkImportResultSchema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.53.0",
|
|
4
4
|
"description": "Unified types for EvalForge agent evaluation system",
|
|
5
5
|
"files": [
|
|
6
6
|
"build"
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"artifactId": "evalforge-types"
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "1439388c972fbb9a930cc6f82b078a000e5ca2c1cc0fddbc3c7908e2"
|
|
51
51
|
}
|