Updating Docs

This commit is contained in:
João Moura
2024-09-16 12:55:03 -03:00
parent 353e925b4f
commit 553e6be260
25 changed files with 430 additions and 468 deletions

View File

@@ -72,7 +72,7 @@ asyncio.run(async_crew_execution())
## Example: Multiple Asynchronous Crew Executions
In this example, we'll show how to kickoff multiple crews asynchronously and wait for all of them to complete using asyncio.gather():
In this example, we'll show how to kickoff multiple crews asynchronously and wait for all of them to complete using `asyncio.gather()`:
```python
import asyncio
@@ -114,4 +114,4 @@ async def async_multiple_crews():
# Run the async function
asyncio.run(async_multiple_crews())
```
```