Files
agent-framework/python/samples/autogen-migration
T
Dmytro Struk f087b864fb Python: Fixed AutoGen migration and tool samples (#4027)
* Fixed ollama_chat_client sample

* Fixed ollama_chat_multimodal sample

* Fixed function_tool_with_approval_and_sessions sample

* Updated function_tool_with_session_injection sample

* Small clean-up

* Update 01_round_robin_group_chat.py

* Update 02_selector_group_chat.py

* Update 03_swarm.py

* Update 03_assistant_agent_thread_and_stream.py

* Update 04_agent_as_tool.py

* Resolved comments
f087b864fb · 2026-02-18 15:58:38 +00:00
History
..

AutoGen → Microsoft Agent Framework Migration Samples

This gallery helps AutoGen developers move to the Microsoft Agent Framework (AF) with minimal guesswork. Each script pairs AutoGen code with its AF equivalent so you can compare primitives, tooling, and orchestration patterns side by side while you migrate production workloads.

What's Included

Single-Agent Parity

Multi-Agent Orchestration

Each script is fully async and the main() routine runs both implementations back to back so you can observe their outputs in a single execution.

Prerequisites

  • Python 3.10 or later.
  • Access to the necessary model endpoints (Azure OpenAI, OpenAI, etc.).
  • Installed SDKs: Install AutoGen and the Microsoft Agent Framework with:
    pip install "autogen-agentchat autogen-ext[openai] agent-framework"
    
  • Service credentials exposed through environment variables (e.g., OPENAI_API_KEY).

Running Single-Agent Samples

From the repository root:

python samples/autogen-migration/single_agent/01_basic_assistant_agent.py

Every script accepts no CLI arguments and will first call the AutoGen implementation, followed by the AF version. Adjust the prompt or credentials inside the file as necessary before running.

Running Orchestration Samples

Advanced comparisons are in autogen-migration/orchestrations (RoundRobin, Selector, Swarm, Magentic). You can run them directly:

python samples/autogen-migration/orchestrations/01_round_robin_group_chat.py
python samples/autogen-migration/orchestrations/04_magentic_one.py

Tips for Migration

  • Default behavior differences: AutoGen's AssistantAgent is single-turn by default (max_tool_iterations=1), while AF's Agent is multi-turn and continues tool execution automatically.
  • Thread management: AF agents are stateless by default. Use agent.create_session() and pass it to run() to maintain conversation state, similar to AutoGen's conversation context.
  • Tools: AutoGen uses FunctionTool wrappers; AF uses @tool decorators with automatic schema inference.
  • Orchestration patterns:
    • RoundRobinGroupChatSequentialBuilder or WorkflowBuilder
    • SelectorGroupChatGroupChatBuilder with LLM-based speaker selection
    • SwarmHandoffBuilder for agent handoff coordination
    • MagenticOneGroupChatMagenticBuilder for orchestrated multi-agent workflows