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

AutoGen — Microsoft Multi-Agent Conversation Framework

Framework by Microsoft Research for building multi-agent conversational AI systems. Agents chat with each other to solve tasks collaboratively. Supports human-in-the-loop and code execution. 40,000+ stars.

介绍

AutoGen is a multi-agent conversation framework developed by Microsoft Research, with 40,000+ GitHub stars. Multiple AI agents collaborate through dialogue to solve complex tasks. Supports human-in-the-loop and sandboxed code execution. Ideal for complex multi-agent systems that need agent debate, iteration, and collaboration.


Quick Use

pip install autogen-agentchat autogen-ext
from autogen_agentchat.agents import AssistantAgent
from autogen_agentchat.teams import RoundRobinGroupChat

coder = AssistantAgent("coder", model_client=model)
reviewer = AssistantAgent("reviewer", model_client=model)
team = RoundRobinGroupChat([coder, reviewer], max_turns=4)
result = await team.run(task="Write a prime-finder function")

Intro

AutoGen is a multi-agent conversation framework developed by Microsoft Research, with 40,000+ GitHub stars. Multiple AI agents collaborate through dialogue to solve complex tasks. Supports human-in-the-loop and sandboxed code execution. Ideal for complex multi-agent systems that need agent debate, iteration, and collaboration.


Source & Thanks

Created by Microsoft Research. Licensed under MIT.

autogen — ⭐ 40,000+

🙏

来源与感谢

Created by Microsoft Research. Licensed under MIT.

autogen — ⭐ 40,000+

讨论

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

相关资产