@oisincoveney/pipeline 1.11.2 → 1.11.3
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/dist/config.d.ts +2 -2
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -231,10 +231,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
231
231
|
}, z.core.$strict>>;
|
|
232
232
|
output: z.ZodOptional<z.ZodObject<{
|
|
233
233
|
format: z.ZodEnum<{
|
|
234
|
+
json_schema: "json_schema";
|
|
234
235
|
text: "text";
|
|
235
236
|
json: "json";
|
|
236
237
|
jsonl: "jsonl";
|
|
237
|
-
json_schema: "json_schema";
|
|
238
238
|
}>;
|
|
239
239
|
repair: z.ZodOptional<z.ZodObject<{
|
|
240
240
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -274,10 +274,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
274
274
|
disabled: "disabled";
|
|
275
275
|
}>>>;
|
|
276
276
|
output_formats: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
277
|
+
json_schema: "json_schema";
|
|
277
278
|
text: "text";
|
|
278
279
|
json: "json";
|
|
279
280
|
jsonl: "jsonl";
|
|
280
|
-
json_schema: "json_schema";
|
|
281
281
|
}>>>;
|
|
282
282
|
rules: z.ZodOptional<z.ZodBoolean>;
|
|
283
283
|
skills: z.ZodOptional<z.ZodBoolean>;
|
package/package.json
CHANGED