From 4c51a0d9343e83e7d0e90adb03aa7060a80aad2c Mon Sep 17 00:00:00 2001 From: Ben Browning Date: Wed, 29 Jan 2025 12:21:10 -0500 Subject: [PATCH] Add missing pipeline schema for IterBlock When reconciling the SDG code, we forgot to add a schema entry for IterBlock. This does that, which will fix the CI failure hit in PR #518 Signed-off-by: Ben Browning --- src/instructlab/sdg/pipelines/schema/v1.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/instructlab/sdg/pipelines/schema/v1.json b/src/instructlab/sdg/pipelines/schema/v1.json index 690d3d73..529f57c1 100644 --- a/src/instructlab/sdg/pipelines/schema/v1.json +++ b/src/instructlab/sdg/pipelines/schema/v1.json @@ -348,6 +348,20 @@ "type": "string" } } + }, + { + "type": "object", + "description": "IterBlock", + "required": ["num_iters", "block_type"], + "additionalProperties": true, + "properties": { + "num_iters": { + "type": "number" + }, + "block_type": { + "type": "string" + } + } } ] }