179 questions
No questions match those filters.
What are the different process types in CrewAI?
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansCrewAI’s process types control how agents in a crew actually coordinate with each other, not just what each one does individually:
- Sequential — tasks execute one after another in a fixed order, each agent’s output becoming the next agent’s input. Predictable and simple: researcher, then writer, then editor, always in that order.
- Hierarchical — a manager agent sits above the crew, delegating tasks to whichever worker fits, reviewing results, and deciding what happens next rather than following a pre-set sequence. This adds an extra LLM call for the manager’s decisions but adapts to workloads that don’t fit a fixed order.
Sequential fits a genuinely predictable pipeline where the order never needs to change — report writing that’s always research, then write, then review. Hierarchical fits when the right allocation of work isn’t knowable in advance — some inputs need heavy research and light writing, others the reverse — and a manager reviewing progress and reassigning work produces a better result than forcing everything through the same fixed order regardless of what the task actually needs.