WikifitaGitHub live67e8de5
pesquisa · pesquisas/multi-agent-methodology

Methodological Congruence — Multi-Agent Systems

Documentation: Methodological Congruence — Multi-Agent Systems

Baixar raw

Methodological Congruence — Multi-Agent Systems

Comparative analysis between Multi-Agent Red Team Arena and AI Co-Scientist (Google DeepMind). Both implement variations of the same paradigm: Elo tournament over LLM-generated entities.

Shared DNA

  1. Identical central paradigm: LLMs generate entities → LLMs judge → Elo updates → ranking determines refinement
  2. LLM-as-Judge with structured output: Both use function calling/tool use to force structured output
  3. Multi-agent architecture with specialized roles: Agents with single responsibility + central orchestrator
  4. Iteration as quality mechanism: Generation → evaluation → refinement cycle
  5. SQLite as backbone: Structured schema for auditable persistence

Divergences

ConceptRed Team ArenaCo-Scientist
What competesPrompts (attack vs defense)Hypotheses (idea vs idea)
SymmetryAsymmetricSymmetric
EvolutionNo — static templates4 strategies (combine, simplify, out_of_box, feasibility)
EmbeddingsNoFAISS for dedup + informative selection
TerminationFixed N roundsConvergence (Elo stability), budget, wall-clock
External toolsNoPubMed, arXiv, web search
Crash recoveryNoTask queue with leases and reclaim

Insight

The presence of evolution in Co-Scientist is the watershed moment. The Red Team Arena is an evaluation system — it measures quality. The Co-Scientist is generation + evaluation — it uses ranking to direct creation of better things. The Elo tournament ceases to be an end and becomes an artificial selection mechanism.

Both are variations of the pattern: "arena-based multi-agent optimization loop".

Repositories

  • Red Team Arena: ~/workdir/study/coworks/Multi-Agent-Red-Team-Arena/
  • Co-Scientist: ~/workdir/study/coworks/Co-Scientist/