via “pre-built agent patterns with llm-powered reasoning and code execution”
Microsoft's multi-agent framework — event-driven, typed messages, group chat, AutoGen Studio.
Unique: Provides a unified Agent interface where AssistantAgent, CodeExecutorAgent, WebSurferAgent, and FileSurferAgent all implement the same protocol, enabling them to be composed into teams without adapter code. Each agent type encapsulates domain-specific logic (LLM calls, subprocess execution, web scraping) while exposing a consistent message-based interface, allowing developers to swap implementations or add custom agents.
vs others: More composable than LangGraph's node-based approach because agents are first-class runtime objects with consistent interfaces; more flexible than CrewAI's role-based agents because agents can be dynamically instantiated and reconfigured at runtime without role definitions.