AI Agent Frameworks / Quiz

Sequential vs Hierarchical Crews

Process.sequential is a pipeline. Process.hierarchical hires a manager. Your test strategy changes completely depending on which one runs.

Difficulty
Medium
Format
Quiz
Points
150
Estimate
10 min

// MISSION BRIEF

Your Mission

CrewAI's process parameter decides how tasks flow: Process.sequential runs them in listed order, Process.hierarchical puts an LLM manager in charge of delegation. One is predictable, one is not, and testing them the same way is a mistake.

Scoring: equal weight per question.

// FIRST CONTACT

Battle teaser

In Process.sequential, tasks execute:

  1. AAll at once in parallel threads
  2. BIn the order they appear in the tasks list, with earlier outputs available as context to later tasks
  3. CIn random order chosen by the LLM
  4. DAlphabetically by task description
Answers, scoring, hints, and the full battle stay sealed.

// SKILL TAGS

crewaiprocesshierarchicalai-agents