Quick Use
pip install crewai crewai-toolsfrom crewai import Agent, Task, Crew
researcher = Agent(role="Researcher", goal="Find the latest AI trends")
writer = Agent(role="Writer", goal="Write compelling content")
crew = Crew(
agents=[researcher, writer],
tasks=[Task(description="Research AI tool trends", agent=researcher),
Task(description="Write a blog post", agent=writer)]
)
result = crew.kickoff()Intro
CrewAI is a Python framework for orchestrating role-playing AI agents, with 25,000+ GitHub stars. Define agents with roles, goals, and tools, then organize them into crews that collaborate autonomously on complex tasks. Ideal for building multi-agent systems for research, content creation, data analysis, and more.
Source & Thanks
Created by CrewAI. Licensed under MIT.
crewAI — ⭐ 25,000+