Introduction
The advanced patterns in this lesson can be classified by how the agents interact.
Parallel Independent Pattern
Stochastic consensus runs agents independently and combines the results. It is designed for breadth.
Interactive Pattern
Agent chat rooms allow agents to communicate and debate. They are designed for depth and challenge.
Serial Verification Pattern
Implement-review-resolve passes work from one fresh context to another. It is designed for quality control.
These patterns can be combined within one project.
For example:
- A set of agents independently proposes architectures.
- A debate room compares the strongest architectures.
- An implementer builds the selected design.
- A fresh reviewer inspects the implementation.
- A resolver fixes the defects.
This creates a complete reasoning and execution pipeline: explore, debate, implement, review, resolve, and verify.