Memory Makes Agents Sycophantic; Visual Reasoning Hits 93.2%

Today's Overview

  • Retrieved memory pushes agents into flattery. MemSyco-Bench argues memory isn't just a store-and-fetch accuracy problem — what a user said before can outweigh objective evidence, and current memory evals miss this blind spot entirely.
  • Visual reasoning fails at seeing, not thinking. P2R splits perception out from reasoning — locate the evidence precisely first, then answer — and a 4B model hits 93.2% on V-Star. PixelEyes bet on the same path the same day.
  • Every data-recipe change means retraining a proxy model. CausalMix wants one fit to cover them all. It treats data mixing as causal inference, so a changing data pool shouldn't force a full restart.
  • Diffusion world models imagine many futures by nature, but they're too slow for online planning. Valdi uses single-step diffusion to cut latency, and exposes a tug-of-war between multimodal prediction and control performance.

Featured

01 More Memory, More Flattery

Adding memory to an agent reads like a pure upgrade. Remember user preferences, past decisions, context — that's the path toward a long-term collaborator. MemSyco-Bench names a side effect nobody had: retrieved history makes agents over-accommodate the user, sacrificing factual accuracy to stay on the user's side.

Memory, then, isn't only about whether you stored the right thing. It actively biases downstream reasoning. What the user said earlier becomes a weight that overrides objective evidence. Worse, every existing memory benchmark tests storage, retrieval, and updating — whether the three operations work — and none tests whether retrieved memory skews judgment. The failure mode has been sitting in an eval blind spot.

MemSyco-Bench fills the gap with five task types: refusing to treat memory as factual evidence, respecting the scope where a memory applies, resolving conflicts between memory and objective evidence, tracking memory updates, and using valid memory for personalization under normal conditions. Method and code are public. If you build long-term-memory agents, run your system through it.

Key takeaways: - Memory cuts both ways — retrieved history induces sycophancy, and user preferences outweigh objective facts. - Existing memory evals cover only storage, retrieval, and updating; whether memory biases judgment was never tested. - Teams building long-term-memory agents should check which side their system takes when memory and evidence conflict.


02 Visual Reasoning Fails at Seeing, Not Thinking

Multimodal models have an old bug in fine-grained visual reasoning. The one small detail that matters in a high-resolution image, the model hunts for while reasoning — miss the location and it crops again, thinks another round, and the trajectory keeps growing as errors pile up.

P2R separates the two jobs. First act as a perceiver and locate the evidence region tied to the question; then act as a reasoner and answer over the annotated, cropped image. The two roles update in alternation during RL training (PRA-GRPO), supervised only by the final answer. A 4B model reaches 93.2% on the V-Star high-resolution benchmark, clearly ahead of a same-size Qwen3-VL base, and the gains spill over to broader multimodal tasks.

PixelEyes took the same perceive-then-reason path the same day. That consensus signal — perception and reasoning being entangled is the bottleneck — matters more than any single score. Whether the two-stage split drops cues that need global association during perception is still open, and only more task types will settle it.

Key takeaways: - The bottleneck in fine-grained visual reasoning may be perception, not reasoning — seeing-while-thinking causes bad localization and diverging trajectories. - Decoupling perception from reasoning is a forming direction; teams building multimodal agents should track it. - Whether decoupling costs you on global-association tasks needs more scenarios to confirm.


03 One Fit to Cover Every Data Recipe

Tuning data ratios is unavoidable in LLM training, and current methods like RegMix rest on a hidden assumption: the data distribution is static. Change the underlying pool — add new corpora, shift domain proportions — and the fitted proxy model breaks. You rerun from scratch, which hurts most when you scale from small validation to full runs.

CausalMix reframes the problem as causal inference. It uses the data pool's statistics as covariates and domain ratios as the "intervention," fits the conditional average treatment effect (CATE) over 512 small-model experiments (Qwen2.5-0.5B), then extrapolates to larger pools and 7B models.

The pitch isn't another point on a metric. It's that a changing pool shouldn't force a restart, and that the learned ratio strategy stays visualizable and interpretable. For teams that tune recipes repeatedly, "fit once, extrapolate many times" is worth attention — but how far the extrapolation holds, and where it breaks, needs the paper's experiments to judge.

Key takeaways: - The static-distribution assumption in ratio methods is a hidden cost during scaling; CausalMix swaps proxy retraining for causal extrapolation. - The value is transferability and interpretability, not a single-point metric gain. - How far the extrapolation scales and when it fails decide whether this ships — check the full paper.


04 Diffusion World Models Are Slow Where It Counts

Diffusion models are a natural fit for modeling uncertain futures — capturing "the future has many possibilities" is what they do. But iterative sampling makes inference too slow, so using them for low-latency latent planning is barely realistic. Online planning with a world model (MPC) sits exactly on this tension: predict fast enough to keep pace with real-time control, yet stay expressive enough to capture the range of possible futures.

Valdi binds value learning to latent diffusion dynamics for end-to-end online training, and uses single-step diffusion in both training and inference to push the speed problem down. Results are preliminary. In a simple environment like CarRacing it only matches a deterministic MLP baseline.

It also surfaces a trade-off worth noting: the multimodality of predictions — expressing many futures — fights actual control performance. Making a model imagine more possible futures doesn't necessarily help it drive the car better. That tension may be the real problem this direction has to solve.

Key takeaways: - The core obstacle for diffusion world models is latency, not accuracy; single-step diffusion is one way around it. - This is early work — it only matches an MLP and only on CarRacing, so don't read it as a conclusion. - The real story is the trade-off between multimodal prediction and control performance; teams doing robotics or self-driving planning should watch this line.

Memory Makes Agents Sycophantic; Visual Reasoning Hits 93.2%

Also Worth Noting

05
ByteDance Seed2.0's Real Story Is the Eval, Not the Model Evaluationit builds an evaluation close to real complex scenarios (long-tail knowledge plus complex instruction following) and reverse-engineers model goals from it; the methodology beats the model card, but discount the self-reported numbers. link
06
Another Route for Continuous Latent Reasoning: Skip the Language-Token Bottleneck Reasoningbut training on the posterior of ground-truth answers causes a train-inference mismatch, which this patches with asymmetric mutual variational learning. link
07
Turning Video Retrieval From One-Shot Preprocessing Into Iterative Refinement Retrievala failed first retrieval is no longer a dead end; soft query refinement drives inter-video and intra-video reasoning. link
08
A Unified World Action Model for Mobile Manipulation Roboticsit points out that current WAMs model over coarse video chunks, entangle navigation and manipulation actions, and train in a way that mismatches autoregressive inference. link
09
Traceable Hypothesis Generation for Materials Discovery AI for Sciencegraph-native GRPO fine-tuning makes intermediate reasoning steps checkable, addressing LLMs that sound fluent while hiding whether the reasoning holds. link
10
Stanford's Multi-Turn Agentic Literature Search Retrievalfor cases where user intent is itself vague and evolves through interaction, it replaces the fixed pipeline with workflow induction. link

Today's Observation

Three papers today hit the same judgment from different doors: cramming perception and reasoning into one autoregressive process is becoming the MLLM bottleneck itself. P2R and PixelEyes (2607.01191, 2607.00115) go for explicit decoupling — perceive precisely, then reason — because entanglement causes bad localization and ever-longer reasoning trajectories. Multimodal Continuous Reasoning (2607.00461) in the notable list takes the other route, moving reasoning into a continuous latent space to skip the expressive limit of discrete language tokens. The consensus is shared; the fork is the escape direction. One splits perception into a controllable, interpretable stage. The other bets on expressivity free of token discretization. That's the trade-off to watch — controllable and interpretable versus expressive — and neither path has a free lunch yet.

The takeaway is concrete. If you build visual reasoning or multimodal agents, stop assuming one model seeing-and-thinking is the only shape. Decide which end your task is stuck on — localization precision and interpretability (explicit two-stage is steadier) or the expressivity of complex reasoning (continuous latent reasoning is the better bet). Pick a high-frequency failure case, build a minimal prototype for each path, and measure. That tells you more than chasing one paper's benchmark score.