feat: make more compatible with "o" family models (#839)

This commit is contained in:
Ralph Khreish
2025-06-21 22:50:00 +03:00
committed by GitHub
parent b9299c5af0
commit c5de4f8b68
13 changed files with 45 additions and 28 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);