AutoGen

Normal
GitHub Python CC-BY-4.0

Description

Microsoft Research's open-source multi-agent programming framework.

Key Features

  • Conversational agents — Agents collaborate via dialogue
  • Customizable roles — Define system messages
  • Tool calling — OpenAI/Anthropic/local models
  • Group chat — GroupChat coordinates multiple agents
  • Code execution — Built-in Python sandbox

Use Cases

💡 Build collaborative research assistants.
💡 Two-agent code generation and review flows.
💡 Multi-department enterprise Copilots.

Quick Start

pip install autogen-agentchat autogen-ext[openai]
from autogen_agentchat.agents import AssistantAgent
agent = AssistantAgent('coder', model_client=client)

Related Projects