Agentic Blueprints 11
Filtersactive

Multi-Agent Debate
Several solver agents answer the same problem, read each other's answers, and revise over rounds until the majority converges.

Mixture of Agents
Layers of worker agents refine the previous layer's answers, with an orchestrator combining them into a stronger final response.

Group Chat (AutoGen pattern)
A group-chat manager coordinates role agents — writer, editor, and friends — publishing turns to a shared conversation.

Sequential Workflow (AutoGen pattern)
Four agents in a strict pipeline, each transforming the previous agent's output — the assembly-line shape, minimal and clean.

Semantic Router
A semantic router classifies each incoming message and dispatches it to the right agent over a distributed pub/sub runtime.

Magentic-One
Microsoft's generalist five-agent team: an orchestrator directing a web surfer, file surfer, coder, and terminal to solve open-ended tasks.

Selector Group Chat
An LLM selector reads the conversation and picks which agent speaks next — planner, searcher, or analyst — instead of a fixed turn order.

Distributed Group Chat
A writer and an editor collaborate in a group chat where every agent runs in a separate distributed runtime, talking over gRPC.

Handoffs (AutoGen pattern)
Swarm-style handoffs in AutoGen: triage, sales, and refund agents transfer the conversation to whoever should own it next.