Determine which Agentic AI Pattern to Use
Agentic AI patterns define how your AI agent reasons and makes decisions. An agentic AI pattern is always associated with a single LLM.
For new use cases, first prototype with ReAct so that it can give you a sequence of steps. Once steps stabilize and you understand what runs and in what order, use Plan & Execute for auditable production workflow.
ReAct Agentic AI Pattern
Adaptive. Number of AI agents: 1.
The AI agent thinks, takes one action, observes the result, then decides on the next step. The AI agent never has a full plan. The AI agent adapts in real-time based on what tools return.
| Use When ... |
|---|
Example use cases:
Good to know:
|
Plan & Execute
Number of AI agents: 2.
- The Planner AI agent uses the Plan agentic AI pattern.
- The Acting AI agent uses the ReAct pattern.
The Planner AI agent creates a full plan: an ordered, structured list of tool calls.
The Acting AI agent carries out the plan in the prescribed order, without reasoning about what to do next. The Acting AI agent does not skip steps, reorder steps, or decide to call a different tool.
| Use When ... |
|---|
Example use cases:
Good to know:
|