> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Early Stopping

> Runnable workflow examples under: cookbook/04_workflows/06_advanced_concepts/early_stopping.

| Example                                                                                           | Description                                                                                                                        |
| ------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| [Early Stop Basic](/examples/workflows/advanced-concepts/early-stopping/early-stop-basic)         | Demonstrates early termination with `StepOutput(stop=True)` across direct steps, `Steps` containers, and agent/function workflows. |
| [Early Stop Condition](/examples/workflows/advanced-concepts/early-stopping/early-stop-condition) | Demonstrates stopping an entire workflow from inside a `Condition` branch.                                                         |
| [Early Stop Loop](/examples/workflows/advanced-concepts/early-stopping/early-stop-loop)           | Demonstrates stopping a looped workflow early using a safety-check step.                                                           |
| [Early Stop Parallel](/examples/workflows/advanced-concepts/early-stopping/early-stop-parallel)   | Demonstrates stopping the workflow from within a step running inside a `Parallel` block.                                           |
