| def decompose_task(task): | |
| return [ | |
| f"Understand the task: {task}", | |
| "Design a safe function", | |
| "Implement the function", | |
| "Assign result variable", | |
| "Prepare for execution" | |
| ] |
| def decompose_task(task): | |
| return [ | |
| f"Understand the task: {task}", | |
| "Design a safe function", | |
| "Implement the function", | |
| "Assign result variable", | |
| "Prepare for execution" | |
| ] |