Agent Playground is liveTry it here → | put your agent in real scenarios against other agents and see how it stacks up

At a Glance

Grounding messages in each agent’s learned world model (its memory of past observations and actions) helps agents coordinate when current observations are missing, and yields better performance than message methods that use only the current observation.

What They Found

Each agent builds a compact world model of its own observation and action history, then creates and sends messages derived from that model instead of from the current view. Using those memory-based messages during both model learning and imagined rollouts improves decision-making when key observations are temporarily occluded. Tested in two environments, the world-model messaging approach consistently beat similar message-learning and no-communication baselines. Messages from other agents were used as inputs for prediction but treated as detached during optimization so learning stayed decentralized. memory-based messages and decentralized learning.

Data Highlights

1Evaluations ran on two environments (Observer and the newly created CatchApple) with 10 independent runs; results were reported as interquartile mean and 95% confidence intervals over runs.
2Agent networks (each agent’s world model and actor-critic) were about 3 million parameters; message channels evaluated were a single 20-way one-hot and four independent 5-way one-hot messages.
3Training episodes used a fixed horizon of 200 steps; CatchApple uses an 8×8 falling area with a 1-row catcher and temporary occlusions to force agents to predict missing object positions.

What This Means

Engineers building multi-agent systems where sensors drop out or observations are split across agents — e.g., distributed robotics, multi-camera surveillance, or federated sensing — will get more reliable coordination by sharing memory-based summaries. Technical leads deciding between decentralized message schemes should consider world-model grounded messages when agents must predict future states rather than just report their current view. distributed robotics and federated sensing.
Not sure where to start?Get personalized recommendations
Learn More

Key Figures

Figure 1: Overview of Dreamer-CPC. Each agent maintains an RSSM-based world model and a message module. Messages are inferred from the latent states of the world model and exchanged between agents.
Fig 1: Figure 1: Overview of Dreamer-CPC. Each agent maintains an RSSM-based world model and a message module. Messages are inferred from the latent states of the world model and exchanged between agents.
Figure 2: Overview of world-model learning in Dreamer-CPC. Each agent learns an RSSM state from its local observation history and action history. The message module predicts a message from its recurrent state and infers a message from the RSSM state. The learned model reconstructs observations using the inferred message and received messages, and predicts rewards and continuation from the RSSM state. Messages from other agents are treated with stop gradient, so that communication can be used for prediction without backpropagating through other agents.
Fig 2: Figure 2: Overview of world-model learning in Dreamer-CPC. Each agent learns an RSSM state from its local observation history and action history. The message module predicts a message from its recurrent state and infers a message from the RSSM state. The learned model reconstructs observations using the inferred message and received messages, and predicts rewards and continuation from the RSSM state. Messages from other agents are treated with stop gradient, so that communication can be used for prediction without backpropagating through other agents.
Figure 3: Overview of actor and critic learning with message exchange during imagination. At each imagined step, agents synchronously apply the message generation and inference procedure, share messages, and update their RSSM states using the exchanged messages. Actor and critic losses are then computed on the resulting imagination rollout. Stop gradient labels indicate that received messages are detached during optimization.
Fig 3: Figure 3: Overview of actor and critic learning with message exchange during imagination. At each imagined step, agents synchronously apply the message generation and inference procedure, share messages, and update their RSSM states using the exchanged messages. Actor and critic losses are then computed on the resulting imagination rollout. Stop gradient labels indicate that received messages are detached during optimization.
Figure 5: Overview of CatchApple environment. (A) The environment contains an 8 × 8 8\times 8 falling object area and one ground row. Agent 1 observes the falling object trajectory and receives no reward, whereas Agent 2 controls the catcher on the ground row and observes its own column. The hatched region indicates an occluded region in which the object position is replaced by a hidden flag. (B) The object moves downward, possibly with diagonal motion and boundary reflection, and capture is judged when the object reaches the lowest row of the falling object area.
Fig 4: Figure 5: Overview of CatchApple environment. (A) The environment contains an 8 × 8 8\times 8 falling object area and one ground row. Agent 1 observes the falling object trajectory and receives no reward, whereas Agent 2 controls the catcher on the ground row and observes its own column. The hatched region indicates an occluded region in which the object position is replaced by a hidden flag. (B) The object moves downward, possibly with diagonal motion and boundary reflection, and capture is judged when the object reaches the lowest row of the falling object area.

Ready to evaluate your AI agents?

Learn how ReputAgent helps teams build trustworthy AI through systematic evaluation.

Learn More

Yes, But...

Experiments used only two-agent setups, so scaling behavior with many agents is untested. The paper does not analyze what information the learned messages actually encode, so interpretability and debugging remain open. Both evaluation environments were designed by the authors; performance on standard, larger benchmarks is not yet demonstrated.

Methodology & More

Dreamer-CPC equips each agent with a compact recurrent world model (a recurrent state-space model) that learns latent dynamics from that agent’s observation and action history. Instead of generating messages directly from the current observation, each agent infers messages from its latent state — effectively sharing a distilled memory of past information and predictions about the future. Message learning is trained together with the world model under a common objective so the messages help predict observations, rewards, and episode continuation. During planning and policy learning, agents perform imagined rollouts inside their own world models while synchronously generating and exchanging messages derived from imagined latent states. Received messages are used for prediction but are detached during optimization (no gradient flows between agents), preserving decentralized learning. In two testbeds — a cooperative reconstruction task (Observer) and a predictive control task with temporary occlusions (CatchApple) — memory-grounded messaging outperformed a prior message-learning method based only on current observations, independent agents with no messages, and agents that simply shared raw observations. The main implication: when important information is temporally unavailable, lightweight world models plus learned message tokens let decentralized agents coordinate more effectively. world-model rooted messaging
Avoid common pitfallsLearn what failures to watch for
Learn More
Credibility Assessment:

All authors have low h-index (2–4), no affiliations listed, and the paper is only on arXiv with no citations — limited signals of established credibility.