🗓️ This Week In AI Research (1-7 August 26)
The top 10 AI research papers and releases that you must know about this week.
✨ This week’s newsletter is brought to you by Pathway. ✨
Researchers at Pathway, Bielik AI, and NYU just published a remarkable model called BDH-CQ, which breaks the previously reported cost-accuracy Pareto frontier in ARC-AGI-1 and sets a new state-of-the-art in benchmark cost efficiency.
BDH-CQ is a 150M-parameter reasoning model.
It learns each new task from the examples it’s shown at inference time (in-context learning), which progressively updates a recurrent memory rather than filling a growing context window. It then solves a given query by iteratively reasoning in a structured, continuous latent state rather than using a verbalized chain of thought.
It achieves 29.5% pass@2 on ARC-AGI-1 at an inference cost of $0.0007 per task. This is less than 1/10th of a cent per task!
Although this is not the highest-accuracy result, its significance is clear when viewed alongside other LLMs’ results.
BDH-CQ is ~57x cheaper than GPT 5.6 Luna (Low), which scores 34.2% (only 4.7% higher) at $0.040.
Even after OpenAI announced a recent 80% API price reduction, BDH-CQ is still ~11x cheaper than GPT 5.6 Luna (Low).
GLM 5 scores 44.7% (15.2% higher), but costs 243x more per task than BDH-CQ.
BDH-CQ is based on a post-Transformer sequence-model architecture called ‘Dragon Hatchling’ (BDH).
Early pretraining experiments show that it has Transformer-like scaling behavior across scales from 1B to 600B parameters while preserving its latent reasoning capabilities.
Read more about this research using these links: Hugging Face | ArXiv | Blog
1. Qwen3.8-Max
Alibaba released its most capable model, Qwen3.8-Max, which is heavily focused on coding, autonomous agents, and long-horizon tasks.
It outperforms previous Qwen models in agentic coding, computer use, research tasks, and co-working workflows.
The model has 2.4 trillion total parameters (95B active per token) and uses a Mixture-of-Experts architecture.
With this model, the team is, for the first time, open-sourcing the weights of a Qwen-Max-class model.
Read more about this release using this link.
2. On-Policy Self-Distillation without Any Supervision
U-OPSD (Unsupervised On-Policy Self-Distillation) is an algorithm that helps an LLM improve its reasoning without ground-truth answers, rewards, or a stronger teacher model. With U-OPSD, an LLM learns and improves using only its own generations, guided by internal consistency.
The process starts with the model generating multiple solutions for each problem and using a majority vote to form its own pseudo-answer, provided it meets a self-consistency threshold.
It then conditions the model’s distribution on the pseudo-solution and distills itself on the disagreeing completions, letting the model correct itself precisely where it is confidently wrong.
U-OPSD consistently outperforms the base models and matches or surpasses supervised methods with ground truth (GT), such as OPSD and GRPO.
Read more about this research using this link.
3. Leanstral
Leanstral is Mistral AI’s series of open-source generalist code-agent models for Lean 4.
The model has a Mixture-of-Experts architecture with 119B total and 6B active parameters.
It runs within the open-source Mistral Vibe coding-agent harness rather than a specialized theorem-proving scaffold, and uses no test-time scaling method beyond context compaction.
Leanstral 1.5's performance is comparable to far larger, proprietary systems, as it saturates miniF2F, solves 587/672 problems on PutnamBench, and reaches a new state-of-the-art of 34% on FATE-X and 43.2% pass@8 on FLTEval.
Beyond competition mathematics, Leanstral can formally verify code and resolve bugs and issues in real-world repositories across graduate-level mathematics, mathematical finance, and code verification.
Read more about this research using this link.
4. The Beginning of ChatGPT Ads
This is the first empirical study of advertising content shown within ChatGPT during the early 2026 rollout.
Researchers created 91 simulated U.S. accounts and ran hundreds of prompts to collect ads from 191 unique advertisers across 127,801 conversations.
The results show that lower-income simulated accounts were significantly more likely to receive ads irrespective of their race.
Product/recommendation-style prompts were more likely to trigger advertising.
The ads were heavily skewed towards consumer goods and directed users to a specific advertiser rather than a particular product.
Ads were clearly marked “Sponsored” and separated from the LLM’s response text rather than embedded within it.
There were near-zero ad rates for medical conditions, mental health, and political prompts.
Read more about this research using this link.
5. Ten Advances in Mathematics and Theoretical Computer Science
An internal OpenAI model, Astra, produced 10 research advances in mathematics and theoretical computer science.
These results go beyond reproducing known proofs to include new resolutions, counterexamples, and improved bounds for many open problems in these subjects.
Read more about this research using this link.
6. Maple-Preview
Maple-Preview is DeepGrove’s open-source ternary-weight reasoning model, designed to run efficiently on consumer hardware.
The model uses a Mixture-of-Experts architecture with 256 experts (8 active) and has 20.2B total parameters (1.49B active).
The model has a 131k-token context window and is competitive with larger models at strong mathematical/general reasoning, including IMO-level problems.
It runs at 218 tokens/sec on an M4 Mac mini, which is 5-16× faster than efficient models like Gemma 4, Qwen3.5, and gpt-oss.
Read more about this release using this link.
7. Scaling Automated Post-Training with Locus
Locus is Intology’s automated research agent, extended to autonomously run the experiments needed to post-train other AI models.
PostTrainBench is a benchmark where an agent is given a base model, a target benchmark, a single-H100 compute node, and internet access, and its task is to produce a post-trained version of the model optimized for the target benchmark.
Locus with Opus 5 has state-of-the-art post-training capabilities on PostTrainBench, where it outperforms every frontier-agent baseline.
On a larger compute variant of PostTrainBench, called PostTrainBench+, when given thousands of H100-hours, Locus continues improving while general-purpose coding agents plateau, and Locus-trained Qwen3-1.7B models collectively surpass Qwen’s official human-tuned checkpoint.
Beyond post-training, across live prize-money Kaggle competitions, Locus achieved an average rank beating 89.5% of human competitors.
Working with Bubble, a no-code app development platform, Locus discovered and executed a post-training recipe end-to-end, and the resulting model now serves millions of users at ~2.8× lower error, ~5.4× lower latency, and ~100× lower cost than the frontier API it replaced.
Read more about this release using this link.
8. LLMRouter: Unified Infrastructure for Developing, Evaluating, and Deploying LLM Routers
Instead of sending every user query to a single frontier model, model routing dynamically routes each query to the model best suited to it.
LLMRouter is an open-source framework and benchmark for standardized and modular implementation of LLM routers.
It defines routing as a sequential decision process using five components:
Context encoder
Model encoder
Scoring function
Decision rule
Learning signals
Existing methods can then be organized into three families: single-turn, multi-turn, and personalized routing.
The authors also introduce xRouteBench, a benchmark for evaluating routers across general LLM tasks, conversational memory, vision/video, time-series, and personalization using a pool of 18 models with different costs and capabilities.
Using these, an empirical study of LLM routing shows that learned routers achieve a 14.6% relative improvement over the strongest fixed-model baseline.
The results also show that multi-turn routing is not consistently better than simple single-turn routing because decomposition and aggregation can introduce extra cost and redundant information.
Read more about this research using this link.
9. OneDayAgent: Towards a Long-Horizon Harness for Autonomous Agents
OneDayAgent is a harness for autonomous agents that helps them complete long-horizon, multi-step everyday tasks without losing sight of their goals, state, or context.
It turns an open-ended request into a managed execution process that decomposes tasks into bounded subtasks, maintains execution memory under context pressure, and verifies and repairs the final output.
OneDayAgent with GLM-5.2 sets a new state-of-the-art with an overall score of 0.821 on AgentIF-OneDay, which contains 104 realistic work, study, and life tasks.
The same harness runs across five backend LLMs from three model families, showing that it generalizes well without any tuning.
Read more about this research using this link.
10. ResidencyRL: Reinforcement Learning in Simulated Clinical Environments
ResidencyRL is an RL method from Google DeepMind for training clinical AI agents through simulated multi-turn clinical encounters rather than only on static medical Q&A.
An agent, initialized from Gemini 3.5 Flash, is trained on ~57,000 simulated clinical cases, with each encounter running for up to 60 dialogue turns and including 8 tool calls. The training uses GRPO with rewards covering diagnostic accuracy, management, history-taking, communication, documentation, and safety.
On held-out evaluations, the ResidencyRL agent improves diagnostic accuracy by 7% under adversarial conditions and reduces missed red flag rates by 31%.
Blinded expert clinicians validated these gains, preferring the trained agent in 87.6% of cases.
The gains also transferred to unseen benchmarks (AMIE, AgentClinic, and CRAFT-MD) and specialties(Oncology).
Read more about this research using this link.
This newsletter edition is completely free to read. Show your love by liking, restacking, and sharing it with others! ❤️


















