Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
3 changes: 2 additions & 1 deletion js/src/generated_types.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down Expand Up @@ -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(),
]);
Expand Down
Loading