diff --git a/generated_types.json b/generated_types.json index eaba25749..d15a703b1 100644 --- a/generated_types.json +++ b/generated_types.json @@ -5388,6 +5388,10 @@ "allow_no_match": { "type": "boolean", "description": "If true, adds a 'No match' option. When selected, no tag is deposited." + }, + "allow_skip": { + "type": "boolean", + "description": "If true, adds a 'Skip' option. When selected, the scorer returns null." } }, "required": ["type", "use_cot"] diff --git a/js/src/generated_types.ts b/js/src/generated_types.ts index f560c399a..417fdb3ff 100644 --- a/js/src/generated_types.ts +++ b/js/src/generated_types.ts @@ -1,4 +1,4 @@ -// Auto-generated file (content hash adad84b723c4d072) -- do not modify +// Auto-generated file (content hash 0ba4b792e8f1345d) -- do not modify import { z } from "zod/v3"; @@ -1003,6 +1003,7 @@ export const PromptParserNullish = z.union([ choice_scores: z.record(z.number().gte(0).lte(1)).optional(), choice: z.array(z.string()).optional(), allow_no_match: z.boolean().optional(), + allow_skip: z.boolean().optional(), }), z.null(), ]);