feat: make more compatible with "o" family models

This commit is contained in:
Ralph Khreish
2025-06-21 22:16:51 +03:00
parent 122a0465d8
commit 54f50a4dc8
9 changed files with 36 additions and 23 deletions

View File

@@ -43,8 +43,9 @@ const subtaskSchema = z
),
testStrategy: z
.string()
.optional()
.nullable()
.describe('Approach for testing this subtask')
.default('')
})
.strict();
const subtaskArraySchema = z.array(subtaskSchema);