Hey community,
I am working on a project which requires me to run agents in parallel. Currently I am setting the option parallel=True in the Crew object initialisation, but the agents are still running in sequential mode. Am I missing something for this feature?
I don’t think parallel=True
is a thing. What you need is async execution of the tasks which you can see in the docs section Tasks - CrewAI
This will allows tasks to be executed in parallel with out waiting for them to finish sequentially.