TRINITY poster.pdf

TRINITY: An Evolved LLM Coordinator

A Lightweight Coordinator Orchestrating Multiple LLMs via Evolutionary Strategy

Authors: Jinglue Xu, Qi Sun, Peter Schwendeman, Stefan Nielsen, Edoardo Cetin, Yujin Tang
Affiliations: Sakana AI, Japan; University of Michigan, USA; Institute of Science Tokyo, Japan
Published: ICLR 2026 | arXiv: 2512.04695

Motivation & Key Contributions

Scaling monolithic LLMs yields diminishing returns, and model merging is impractical across incompatible architectures and closed-source APIs. TRINITY adopts a macro-level approach: test-time model composition via coordination, fusing complementary strengths of multiple models without modifying their weights.

Why Evolutionary Strategy?

Training the coordinator is challenging: each evaluation requires a full multi-turn LLM rollout (expensive), the reward is binary (correct/incorrect), and parameters exhibit weak mutual coupling — each has only a tiny influence on the scalar reward.

sep-CMA-ES Results

sep-CMA-ES consistently outperforms all alternative training methods:

Method LCB MATH MMLU RLPR
REINFORCE 0.253 0.459 0.500 0.266
Random Search 0.374 0.794 0.897 0.345
SFT 0.592 0.786 0.906 0.360
sep-CMA-ES 0.615 0.880 0.916 0.401

Coordination Pipeline

TRINITY processes queries over multiple turns. At each turn, a compact SLM reads the full transcript, and a lightweight head selects an LLM and assigns it one of three roles: Thinker (strategize), Worker (execute), or Verifier (evaluate). The process halts when the Verifier accepts the solution.

Conclusion

TRINITY demonstrates that a lightweight coordinator (<20K learnable parameters) can orchestrate diverse LLMs to achieve state-of-the-art performance. The results suggest a promising path forward: engineering collaborative AI ecosystems rather than scaling monolithic models.