1. Which statement BEST describes the role of a 'human-in-the-loop' step in a multi-agent recovery pattern?
- A. A human-in-the-loop step automatically retries a failed agent with modified parameters without requiring operator input
- B. A human-in-the-loop step pauses workflow execution at a defined decision point, presents relevant agent state and failure context to an operator, and resumes or redirects the workflow only after explicit human approval✓ Correct
- C. A human-in-the-loop step replaces all downstream agents with a manual process, permanently removing automation for the remainder of the workflow run
- D. A human-in-the-loop step triggers a rollback of all agent actions taken since the last successful checkpoint without operator review
Explanation
Correct: A human-in-the-loop (HITL) recovery step is a deliberate pause mechanism: it surfaces agent state and failure context to a human operator, who then makes an informed decision to resume, modify, or redirect the workflow. It preserves human oversight at critical recovery decision points without permanently replacing automation. — Wrong (A): Automatic retry with modified parameters is an automated recovery strategy (e.g., retry-with-backoff or parameter perturbation), not a human-in-the-loop pattern; HITL specifically requires human involvement. — Wrong (C): HITL does not permanently replace downstream automation; it is a conditional intervention at a specific decision point, after which automated agents typically resume. — Wrong (D): Automatic rollback to a checkpoint is a distinct recovery pattern (rollback recovery); HITL specifically defers the recovery decision to a human rather than executing it automatically.