AI / CrewAI Interview Questions
What is a Crew in CrewAI?
A Crew is a structured group of agents and tasks that work together to complete a process, coordinating execution the way a team of specialists collaborates on a shared project.
- Instantiated with a list of agents, a list of tasks, and a process type
- The Crew's process determines how tasks get distributed and executed, sequentially or through a manager
- Started by calling kickoff(), which runs the whole workflow and returns a final result
The Crew is the central orchestration object in CrewAI, everything else, agents, tasks, tools, and memory, gets assembled and executed through it.
More Related questions...