AI / CrewAI Interview Questions
How do you kick off a Crew?
Running a Crew's workflow starts by calling its kickoff() method, which executes all defined tasks according to the crew's process and returns the final result.
- CrewAI executes the tasks in the order or structure defined by the process, sequential or hierarchical
- Passes context between agents and tasks automatically as needed
- An asynchronous variant, kickoff_async(), is also available for non-blocking execution
Whatever the final task or manager-validated result is, that becomes the Crew's returned output once kickoff() completes.
More Related questions...