From d9c426a50d511b789cdcf2a1dd1e9df25d238929 Mon Sep 17 00:00:00 2001 From: Vidit Ostwal <110953813+Vidit-Ostwal@users.noreply.github.com> Date: Tue, 4 Feb 2025 23:26:00 +0530 Subject: [PATCH] Fixed the documentation (#2017) * Fixed the documentation * Fixed typo, improved description --------- Co-authored-by: Vidit Ostwal Co-authored-by: Brandon Hancock (bhancock_ai) <109994880+bhancockio@users.noreply.github.com> --- docs/concepts/crews.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/crews.mdx b/docs/concepts/crews.mdx index 58511b07c..11ba3387e 100644 --- a/docs/concepts/crews.mdx +++ b/docs/concepts/crews.mdx @@ -279,9 +279,9 @@ print(result) Once your crew is assembled, initiate the workflow with the appropriate kickoff method. CrewAI provides several methods for better control over the kickoff process: `kickoff()`, `kickoff_for_each()`, `kickoff_async()`, and `kickoff_for_each_async()`. - `kickoff()`: Starts the execution process according to the defined process flow. -- `kickoff_for_each()`: Executes tasks for each agent individually. +- `kickoff_for_each()`: Executes tasks sequentially for each provided input event or item in the collection. - `kickoff_async()`: Initiates the workflow asynchronously. -- `kickoff_for_each_async()`: Executes tasks for each agent individually in an asynchronous manner. +- `kickoff_for_each_async()`: Executes tasks concurrently for each provided input event or item, leveraging asynchronous processing. ```python Code # Start the crew's task execution