Here are the notes from some talks I attended at ACL 2026 in San Diego!
Multi-agent LLM systems
At a glance
- Main tutorial: Towards Effective and Efficient Multi-Agent Language Model Systems: Foundations, Prospects, and Applications.
- Speakers: Xuan Wang, Shuxiang Cao, Yuchen Zhuang, Wenqi Shi.
- Core idea: the interesting part is no longer just "make agents talk"; it is making them cheaper, controllable, domain-aware, and verifiable.
- Big warning: more agents can also mean more token waste, more sycophancy, and more confident agreement on wrong answers.
- Best mental model: agentic AI is becoming systems engineering: routing, memory, tools, controllers, feedback, and evaluation.
Why multi-agent systems?
The tutorial framed multi-agent language model systems as a practical response to the limits of single, giant models. A single frontier model can be powerful, but it is often expensive, closed, slow, hard to personalize, and difficult to deploy near private or latency-sensitive data.
A multi-agent system can split work across specialized components: a planner, a tool user, a critic, a domain expert, a retriever, a guard, or a small local model that handles one narrow step. The hard part is deciding who does what, what information gets shared, and how the system knows when the answer is actually good.
Small language model agents
Xuan Wang's section started from a very practical question: can small language models become competitive agents? Small models help with privacy, local deployment, latency, network stability, and edge use cases, but their reasoning behavior is uneven. A model that looks strong on one benchmark can still fail on algorithmic tasks such as sorting, planning, or compositional search.
- BeyondBench: stress-tests reasoning with verifiable answers and adjustable difficulty, instead of only relying on fixed benchmark items.
- EffGen: combines prompt compression, task decomposition, complexity-based routing, and memory.
- Debate, Train, Evolve: uses multi-agent debate and self-improvement to generate better training signals.
- VISTA-GYM: gives agents tool-use situations with intermediate failures, retries, and feedback loops.
My takeaway: small models are not just budget versions of large models. They become interesting when they are placed in the right role: local, private, fast, specialized, or used as controllers around stronger black-box models.
Consensus is not truth
The multi-agent communication part focused on consensus. In debate-style systems, agents may appear to deliberate, but the group can still drift toward agreement for the wrong reasons. ConsensAgent was presented as an attempt to make consensus faster and less sycophantic.
This was one of the most useful warnings for me: a multi-agent system should not be judged only by whether agents eventually agree. We also need process-level diagnostics: who changed their mind, why, how much evidence was exchanged, and whether minority information survived the discussion.
The city-planning and political-debate examples made this concrete. These tasks have ambiguous goals, incomplete information, conflicting stakeholders, and resource limits. That is exactly where naive "agent debate" becomes fragile.
Black-box and white-box collaboration
Yuchen Zhuang's section centered on collaborative intelligence: how to bridge black-box frontier models and white-box smaller models. Black-box models have the strongest general capabilities, but they are closed, expensive, and hard to adapt directly. White-box models are trainable and controllable, but usually weaker as generators.
- BBox-Adapter: adapts outputs by scoring and steering generations from a black-box model.
- Hydra: adapts inputs by selecting user-specific context more intelligently than simple retrieval.
- Matryoshka Pilot: treats the black-box generator as an environment and trains a controller to guide it across multiple steps.
- Collab-RAG / AceSearcher: connect the same idea to retrieval and search, where coordination matters as much as generation.
The industrial framing was useful: when you cannot fine-tune the giant model, you can still control inputs, rerank outputs, add guard models, steer prompts, or train a separate controller.
Agents in healthcare and biomedicine
Wenqi Shi's section made the agent architecture more concrete. An LLM-powered agent has a "brain" for reasoning and planning, but it also needs memory, tools, actions, and environmental feedback. In biomedicine, that distinction is not cosmetic: the agent must retrieve domain knowledge, call specialized tools, write code, inspect errors, and interact with data that may be private, heterogeneous, and noisy.
- Biomni: general biomedical agent framing, with tools and domain knowledge.
- Google AI co-scientist: agentic scientific ideation and hypothesis generation.
- ChemCrow: chemistry tools through an iterative ReAct-like loop.
- EHRAgent: complex tabular reasoning over electronic health records through code generation, execution feedback, debugging, and memory.
- MedAgentGym: code-centric biomedical reasoning environments for agent training.
The most memorable biomedical story was the virtual lab: a team of agents organized scientific meetings, proposed a workflow, used tools such as ESM, AlphaFold-Multimer, and Rosetta, and designed candidate nanobodies for SARS-CoV-2 variants. The important point was not "AI replaces the scientist"; it was that agents can organize repeated, tool-heavy scientific work while humans still shape goals and evaluate what matters.
Agents in science
The science part broadened the same pattern: plan, act, observe, revise. In scientific discovery, an agent must decide which experiment to run, allocate a limited budget, stop when evidence is sufficient, and recover from errors. That makes the environment central. Without an environment, the agent can only narrate a plan; with an environment, it can test, fail, repair, and learn.
The tutorial discussed recurring search patterns: single-loop agents, tree search, population search, tournaments, debate protocols, and human- or trace-constrained workflows. This connected naturally to AI co-scientists, molecular optimization, autonomous labs, quantum-computing evaluation, and scientific agent gyms.
My strongest note from this section was that error recovery is the bottleneck. It is easy to make an agent produce a plausible next step. It is harder to make it notice that the step failed for the right reason, choose a better repair, and avoid looping forever.
What I'm taking away
- Agentic AI is becoming systems engineering: routing, memory, tools, controllers, evaluation, and environments are the real substance.
- Small models matter: not because they magically reason like frontier models, but because they can make agentic systems private, local, fast, and cheaper.
- Consensus can be dangerous: multi-agent agreement needs diagnostics, otherwise sycophancy can look like collaboration.
- Domains change the architecture: healthcare, science, robotics, and industry need different tools, constraints, and feedback signals.
- Long reasoning traces are not enough: robustness to perturbations, non-English reasoning, high-stakes use, and real execution feedback remain open problems.
Terms worth searching
BeyondBench, EffGen, VISTA-GYM, ConsensAgent, BBox-Adapter, Hydra personalization, Matryoshka Pilot, Collab-RAG, AceSearcher, Biomni, Google AI co-scientist, ChemCrow, EHRAgent, MedAgentGym, LabOS.
References & links
- Tutorial page: ACL 2026 Tutorial: Towards Effective and Efficient Multi-Agent Language Model Systems .
- Notes: my notes from the tutorial and the combined tutorial slide deck.