Quick Use
pip install autogen-agentchat autogen-extfrom 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+