AI / CrewAI Interview Questions
What is the @start decorator in CrewAI Flows?
The @start decorator marks a method as an entry point for a Flow, defining where execution begins.
- A Flow can have multiple methods decorated with @start
- All satisfied @start methods execute, often in parallel, when the Flow runs
- Can accept a callable condition to control exactly when a given start method should fire
This is the first step in a Flow's execution model, before anything can listen for an event, something has to kick that first event off.
More Related questions...