From 4857397cbf20e48909f46eab02a41830f3409189 Mon Sep 17 00:00:00 2001 From: "braintrust-bot[bot]" <215900051+braintrust-bot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 18:12:05 +0000 Subject: [PATCH] chore: generated SDK types --- generated_types.json | 4 ++++ js/src/generated_types.ts | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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(), ]);