INQUIRING LINE

When an AI agent works on its own, is the big win in research keeping it going, and in production keeping it trustworthy?

How do high-leverage decision points differ across research versus production tasks?

This explores where a single decision pays off most in open-ended research-style work (searching, optimizing, exploring) compared with production-style work (systems that run unattended and have to be trusted). The corpus has no note that compares the two directly, so this answer reads across its findings.


This explores where a single decision pays off most in open-ended research-style work (searching, optimizing, exploring) compared with production-style work (systems that run unattended and have to be trusted). The corpus has no note that compares the two directly, so what follows is a reading across adjacent findings. The notes do point to different pressure points on each side.

In research-style tasks, the biggest lever is often whether the loop keeps going. Across 17 frontier models on 36 expert-designed optimization tasks, repeated cycles of benchmarking, editing and folding results back in predicted success better than the quality of the first attempt. Most models quit early or burned their budget without progress What predicts success in ultra-long-horizon agent tasks?. Budget is the second lever. Deep research agents improve with more search steps along a curve that mirrors reasoning tokens, including the diminishing returns Do search steps follow the same scaling rules as reasoning tokens?. Which algorithm you pick matters less than you'd expect. Best-of-N and tree search converge once total compute is held equal, and what separates them is how reliable the value function is Does the choice of reasoning framework actually matter for test-time performance?. So the research-side decision points are how long to persist, how much to spend, and how good your scoring signal is.

Research also has a selection step that is easy to get wrong: deciding which candidate to keep. AIDE2's selection gains were checked on four held-out benchmarks, including physics-based weather forecasting outside the selection distribution, to show they weren't overfit to the tasks used to choose Do AIDE2's improvements transfer to unseen tasks?. A research pipeline earns trust at the point where it tests whether a chosen winner still wins on something new.

For production, the corpus is thinner. The relevant notes are mostly about training and evaluation, so this part is my inference. The leverage seems to move from how long to search to what signal you are trusting. Reward hacking shows up when weights are updated, when outputs are selected, and when prompts are revised, and the cause is the same each time: optimizing against a score that only partly captures the real task Does reward hacking always stem from the same failure?. One concrete design choice is to use rubrics as accept/reject gates rather than converting them into dense rewards, which kept optimization from gaming them Can rubrics and dense rewards work together without hacking?. Judges that reason through steps before scoring also outperform plain classifiers, so the checker itself is a decision worth investing in Can judges that reason about reasoning outperform classifier rewards?.

The human checkpoint matters too. If AI generates output faster than people can evaluate it, verification capacity becomes the bottleneck. The note on epistemic hyperinflation warns that the evaluation tools are themselves AI-generated, so the gap can feed itself Can AI generate knowledge faster than humans can evaluate it?.

The shared thread is that the scoring signal is the hinge in both settings, but the failure that hurts differs. In research, the costly failure is giving up early or spending budget without feedback. In production, it is trusting a score that quietly diverges from what you wanted. The corpus has little on deployed systems directly, so the production half of this comparison is a hypothesis to test rather than a settled finding.


Sources 8 notes

What predicts success in ultra-long-horizon agent tasks?

Across 17 frontier models on 36 expert-curated optimization tasks, repeated benchmark-edit-incorporate cycles within a wall-clock budget proved the dominant success predictor. Most models terminated early or burned budget unproductively; Claude Opus 4.6 stood out as persistent.

Do search steps follow the same scaling rules as reasoning tokens?

Deep research agents improve with more search steps in a pattern mirroring the reasoning-token relationship, with both exhibiting diminishing returns. This reveals a new inference-compute axis beyond model capability alone.

Does the choice of reasoning framework actually matter for test-time performance?

Information-theoretic analysis shows BoN and MCTS converge in reasoning accuracy when controlling for total compute. Snowball errors accumulate per step regardless of framework; mitigation depends on search scope and reward function reliability, not the specific algorithm.

Do AIDE2's improvements transfer to unseen tasks?

The paper reports that AIDE2's improvements transfer to four held-out benchmarks spanning machine learning, algorithm engineering, and physics-based weather forecasting—the last being outside the selection task distribution. This demonstrates transferable gains beyond overfitting to the selection set.

Does reward hacking always stem from the same failure?

Reward hacking arises during weight training, output selection, and prompt revision through a shared failure: optimization against signals that incompletely represent the actual task. The substrate matters less than the misalignment between the scoring function and ground truth.

Show all 8 sources
Can rubrics and dense rewards work together without hacking?

DRO shows that using rubrics to accept or reject rollout groups—rather than converting rubric scores into dense rewards—prevents reward hacking. This separation preserves the categorical strength of rubrics while letting token-level rewards optimize within valid answers.

Can judges that reason about reasoning outperform classifier rewards?

StepWiser demonstrates that training judges to produce reasoning chains about policy reasoning—rather than classify steps—yields better judgment accuracy and data efficiency. Independent confirmation from GenPRM and ThinkPRM shows generative PRMs outperform discriminative ones with orders of magnitude less training data.

Can AI generate knowledge faster than humans can evaluate it?

AI produces knowledge faster than human judgment can verify it, collapsing epistemic confidence just as monetary hyperinflation collapses purchasing power. The gap self-reinforces because evaluation tools are themselves AI-generated, trapping the system in acceleration.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.