Scripts2026年4月6日·1 分钟阅读

CrewAI — Multi-Agent Orchestration Framework

Python framework for orchestrating role-playing AI agents that collaborate on complex tasks. Define agents with roles, goals, and tools, then let them work together autonomously. 25,000+ stars.

介绍

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.


Quick Use

pip install crewai crewai-tools
from 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+

🙏

来源与感谢

Created by CrewAI. Licensed under MIT.

crewAI — ⭐ 25,000+

讨论

登录后参与讨论。
还没有评论,来写第一条吧。

相关资产