AI / CrewAI Interview Questions
What is a Flow in CrewAI?
A Flow is CrewAI's mechanism for event-driven, production-ready orchestration, giving developers precise control over complex automations that go beyond what a single Crew's own process handles.
- Built from Python methods decorated with @start, @listen, and @router
- Manages structured state that persists throughout the flow's execution
- Can call one or more Crews internally, chaining their outputs together into a larger pipeline
Where a Crew handles the natural, autonomous collaboration between agents, a Flow handles the explicit, deterministic control of when and how each part of a larger workflow runs.
More Related questions...