AI engineering · 41 of 42
Split what splits, and nothing else
Scroll
Split what splits, and nothing else
Multi-agent means several model instances with separate contexts working on one task, usually as a fan-out: split the work, run the pieces in parallel, verify, then merge.
It works when the pieces are genuinely independent — three competitors to research, three files to review, three claims to check. It fails when each step needs the full picture, because the workers cannot see each other's findings and go on to duplicate, contradict and amplify each other's mistakes.
So this is not a general upgrade, and it is the concept most often adopted for the wrong reason. Two rules earn their keep: verification happens in a fresh context, because a model grading its own work misses most of its own errors; and exactly one thing owns the merge.
Agents