Skip to content

3.5 β€” Demo: ReAct Loop πŸ§ͺ

Step through the Reason β†’ Act β†’ Observe β†’ Loop cycle (until it can answer) on an example mission, step by step, then visually compare the 3 multi-agent paradigms (graph / roles / conversation β€” detailed right after, in 3.6). What you observe here is exactly what Make or n8n run for you in 3.8.

ReAct Loopβ€” Reason β†’ Act β†’ Observe
The missionWhat's the weather in Paris today, and do I need an umbrella?
Reason
I need the weather in Paris. I'll use my web search tool.
1 / 5

One agent, or a team? The 3 paradigms

When a single agent is no longer enough, three ways to make agents collaborate:

LangGraphgraph Β· strict control
Plan→Tool→Check→End

Graph flow, each step controlled. State memory (checkpointing): resumes after a crash. The production default.

CrewAIroles Β· intuitive
Manager↓Researcher↓Writer

A team with roles, like in a company. The manager delegates, each has a specialty.

AutoGen / MAFconversation Β· debate
Coder : Here's my function.
Tester : Fails on one case β€” try again.
Coder : Fixed βœ“

Agents debate in a thread. Effective for code. AutoGen merged into Microsoft Agent Framework (late 2025).

⚠️ Educational simulation in your browser (no real AI called). ReAct is the mental model; frameworks automate this loop for you.

How would you rate this lesson?
πŸ“ My note

A training byBaxIA