## Async patterns that pay off
Use async for provider calls, multi-document fetches, retrieval fan-out, and background tasks. Avoid mixing sync and async blindly.
Phase 1 MVP
Lesson
Use async where network waiting dominates and make timeout and retry behavior explicit.
## Async patterns that pay off
Use async for provider calls, multi-document fetches, retrieval fan-out, and background tasks. Avoid mixing sync and async blindly.