Hierarchical workflows automatically handle common failure modes with built-in retry mechanisms and intelligent error recovery.Documentation Index
Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
Use this file to discover all available pages before exploring further.
Quick Start
How It Works
Configuration Options
| Setting | Value | Description |
|---|---|---|
MAX_MANAGER_RETRIES | 3 | Maximum parse error retries |
MAX_INVALID_SELECTIONS | 3 | Maximum invalid ID re-prompts |
| Backoff timing | 2s, 4s, 8s | Exponential backoff delays |
These constants are not user-configurable today; they are SDK defaults designed for optimal reliability. Future versions may expose configuration options.
Error Recovery Types
Parse Failures
When: Manager LLM returns invalid JSON
Recovery: Retry with exponential backoff
Max: 3 attempts before abort
Invalid Task IDs
When: Manager selects non-existent task
Recovery: Re-prompt with valid ID list
Max: 3 attempts before abort
Loop File Errors
When: Cannot read loop input file
Recovery: Mark task as failed with error
Visibility: Error shown in TaskOutput
Related
Process Types
Understanding hierarchical processes
Hooks
Custom error handling with hooks

