diff --git a/docs/async.md b/docs/async.md index c9d265a..fd55fa7 100644 --- a/docs/async.md +++ b/docs/async.md @@ -9,14 +9,11 @@ nav_order: 5 **Async** Nodes implement `prep_async()`, `exec_async()`, `exec_fallback_async()`, and/or `post_async()`. This is useful for: -1. **prep_async()** - - For *fetching/reading data (files, APIs, DB)* in an I/O-friendly way. +1. **prep_async()**: For *fetching/reading data (files, APIs, DB)* in an I/O-friendly way. -2. **exec_async()** - - Typically used for async LLM calls. +2. **exec_async()**: Typically used for async LLM calls. -3. **post_async()** - - For *awaiting user feedback*, *coordinating across multi-agents* or any additional async steps after `exec_async()`. +3. **post_async()**: For *awaiting user feedback*, *coordinating across multi-agents* or any additional async steps after `exec_async()`. **Note**: `AsyncNode` must be wrapped in `AsyncFlow`. `AsyncFlow` can also include regular (sync) nodes.