ArtificialIntelligence.io

The Signal

Everything that matters in AI, with our take.

Updated through the day. Every headline links straight to the source. The two lines underneath are ours.

arXiv cs.AIPaper

Learning to Use Tools: Reinforcement Learning for Tool-Integrated Mathematical Reasoning

Tool-calling accuracy is still the weak point in agent systems, and this work isolates the problem cleanly: models generate calculation errors because they weren't trained to use tools reliably. The RL methods here (RLOO, GRPO, DAPO) are practical, and the fresh held-out benchmark is credible. If you're building math agents, the pattern is clear: supervised fine-tune first on tool patterns, then optimize with on-policy RL and verifiable rewards. This is becoming table stakes.

arXiv cs.CLPaper

PaperGym: Rubric-Centered Evolution for Research-Plan Generation

Training AI systems to generate research plans requires separating the question from the rubric to prevent reward gaming. PaperGym's insight is solid, but an AI that can write novel research papers reliably doesn't exist yet, so this is a probe into that future rather than a solved problem. Interesting for research-automation teams, but early.

arXiv cs.CLPaper

Acquire, Repair, Preserve: A Diagnosis-Guided Post-Training Recipe for Small-Model Dialogue Game Agents

Small models can be made competitive on structured interactive tasks through targeted diagnostics and RL. The wins here are real: clemscore goes from 10.67 to 38.92. The recipe is generalizable: acquire broad coverage, fix local failures, preserve general ability. If you're working with small models in constrained domains, this is a template that works.

arXiv cs.CLPaper

ContextPilot: Teaching Agents for Proactive Context Management via Fine-grained RL

Context window is still the choke point for multi-step agent work. ContextPilot adds tools beyond search-and-delete (planning, adaptive compression, long-term memory) and fixes the RL signal so the model learns which edits actually matter. If you're building agents that run for dozens of steps, this is worth testing against your baseline pipeline. Real gains probably live in the credit assignment fix.

arXiv cs.AIPaper

How to Train a Critic Stably and Efficiently

Critic-based RL has been sidelined mainly because it's unstable to train, so a validated recipe that fixes that matters for teams doing RLHF or RLVR at scale. If you're running GRPO because critics were too finicky, this is worth testing against your existing pipeline before assuming group sampling is the ceiling.

arXiv cs.CLPaper

Ask, Condition or Abstain: Reinforcement Learning for Missing-Premise Reasoning

The capability is real and the problem is genuine: models usually refuse or guess when info is missing. This framework teaches a middle path. The benchmark is solid. But this is useful if you're building reasoning systems that can gracefully degrade and ask clarifying questions. For most applications, your problems are already well-specified by the time they hit the model, so the value is narrow. If you're building customer-facing reasoning systems, revisit this.

arXiv cs.LGPaper

One Frozen Simulator Is Not Enough: Simulator Collapse in Multi-Agent RL

This names a real failure mode for anyone training agents against synthetic user simulators: overfitting to the simulator's dominant behavior rather than real distribution. The proposed fixes, verbalized sampling and co-training against a population of simulators, are worth testing before you ship an RL-trained agent that only performed well in simulation.