The Inference Report

September 2, 2026

The AI industry is stratifying rapidly across three distinct layers, each governed by different competitive dynamics and each attracting capital and talent accordingly. At the top, a three-company monopoly on foundation model training has emerged: Anthropic, OpenAI, and Databricks account for 92 percent of the $410 billion raised across 45 private AI companies, forcing venture firms to raise their own thresholds just to make their lists meaningful. This concentration reflects not technical superiority alone but the winner-take-most dynamics of foundation models, where marginal improvements in capability justify exponential valuation jumps. Yet the real economic activity is happening elsewhere. Builders are shipping agents that do specific work: Empirik predicts infrastructure outages, AIR vets agent behavior, Serval automates helpdesk tickets, and Fambot manages family logistics. None of these require trillion-parameter models or appear in venture lists because they're profitable too quickly to need the capital rounds that make headlines.

The infrastructure layer is where the actual leverage sits, and every major vendor is racing to control it. AWS, Microsoft, OpenAI, and Anthropic are all shipping governance systems designed to prevent agents from escaping their intended scope, but these solutions address identity, not behavior. A service account passes every access review because the review asks whether it's valid, not whether it should still be doing what it was created to do months ago. Apply that logic to deployed AI agents and you have a governance crisis in waiting. Companies are building the plumbing before the water arrives, which is the right instinct but leaves the harder question unanswered: how do you know an agent is still the agent you approved when it's been operating in the wild for extended periods? Defense and healthcare sectors are moving first. OpenAI integrated Epic's patient records into ChatGPT Health for clinician workflows. The Defense Department opened ChatGPT access for unclassified administrative work. These are institutional adoptions now, which means liability, compliance, and the slow hardening of products against the use cases that matter most.

The product roadmaps reveal the incentive structure clearly. Consumer features chase trends, enterprise features chase risk mitigation, and infrastructure features chase the power to say no. OpenAI is bundling product capability with internal safety certification to ease customer procurement and reduce perceived regulatory friction. Google and Google DeepMind are taking the opposite approach, leading with applied outputs like methane mapping and video understanding that position their models as tools for specific problems rather than platforms for general transformation. NVIDIA and CrowdStrike are betting the cybersecurity market will consolidate around agentic systems. AMD and Hugging Face are attacking the infrastructure layer on latency and local inference, implying that vendor lock-in around large cloud models is overstated. Across all these announcements, the pattern is less about model capability and more about who controls the narrative around deployment and who gets to decide whether an agent's output gets acted upon.

Grant Calloway

AI LabsAll labs
From the WireAll feeds
Research PapersAll papers
Beyond Scores: Understanding LLM-as-a-Judge Mechanisms in Summarization Evaluation cs.CL

LLM-based evaluators of natural language generation (NLG) quality are widely deployed as scoring tools and as automated training signals, yet the internal procedure by which they assign a rating remains poorly understood. We investigate this procedure mechanistically through an eight-attack perturbation taxonomy across the Readability and Adequacy dimensions of NLG quality, a generation pipeline that produces paired clean and corrupt summaries with controlled error intensity and explicit token-level modification maps, and a four-experiment battery of causal tracing, logit-lens vocabulary projection, and attention-head knockout applied to Themis (Llama-3-8B) and Prometheus (Mistral-7B). Both evaluators implement a structured, coherent evaluation pipeline operating in two stages: below layer 15, attention performs local error comparison and routes the result to the final input position; above it, the MLP cascade integrates the signal and writes the rating, with the decision crystallizing in the residual stream at a sharp late layer (L = 26 on Themis, L = 25 on Prometheus). Furthermore, a base-model control at the same scale (Llama-3-8B) reproduces the routing architecture and crystallization but not the stage separation, isolating the two mechanisms that fine-tuning specifically installs, suppression of below-L15 MLP contribution at the last position and a two-layer advance of the crystallization depth, indicating that fine-tuning sculpts an existing substrate rather than building the pipeline from scratch. We release the source code and data at https://github.com/himil-v/judge-mech

Efficient SWE Agent Benchmarking via Trajectory-Aware Evaluation cs.SE

Evaluating software engineering agents on realistic benchmarks is costly, since each task may require multi-step code exploration, modification, and test execution. Existing efficient evaluation methods select representative subsets to estimate full-benchmark performance, but are largely result-only: they fit historical pass/fail response matrices or static task semantics, discarding how agents solve problems. We propose PTA-IRT, a Privileged Trajectory-Aware Item Response Theory framework that fuses process and outcome signals. Historical execution trajectories supply process-level evidence beyond pass/fail, such as explored context, attempted edits, and solving paths, which PTA-IRT uses as privileged information for calibration subset selection and ability estimation. Under low calibration budgets, PTA-IRT consistently outperforms prior IRT baselines on score and ranking recovery across four SWE benchmarks. Code and data are publicly available at https://github.com/DeepSoftwareAnalytics/PTA-IRT.

Adaptive Critical Token-Aware Retrieval for Repository-Level Code Generation cs.SE

The repository-level code generation task requires synthesizing code that satisfies task requirements while remaining consistent with the target repository context. Since real-world repositories often exceed the input length limits of LLMs, existing approaches commonly adopt retrieval-augmented generation (RAG) to provide repository-specific context. Despite improving repository-context retrieval, existing methods typically provide context as task-level support, without explicitly identifying the critical tokens that require fine-grained repository context during generation. During the autoregressive generation process of LLMs, errors often concentrate at a small number of decisive positions: once such tokens are generated incorrectly, subsequent code may follow an incorrect semantic path and eventually lead to functional failure. We refer to these positions as "critical tokens". In this paper, we propose ACToR, an adaptive critical token-aware retrieval framework for repository-level code generation. ACToR identifies critical tokens during generation and triggers targeted retrieval on demand to provide repository context at these decisive positions. In addition, we design a position-aware weighting method for dense retrievers to prioritize context that is more informative for generation. We evaluate ACToR on two representative repository-level benchmarks, RepoExec and CoderEval. Experimental results show that ACToR consistently outperforms state-of-the-art methods, achieving relative improvements of 8.4% on RepoExec and 15.4% on CoderEval. Beyond performance gains, we systematically quantify the impact of critical tokens, revealing their central role in major generation failures and highlighting the necessity of targeted retrieval strategies. We provide the code and data at https://github.com/DeepSoftwareAnalytics/ACToR.

CordisBench: Can Language Models Reason About Component Lifecycles in Dynamic Agent Harnesses? cs.CL

Dynamic agent harnesses let language models change the software that shapes their own execution. This flexibility brings a new reasoning burden: a local plugin change can propagate through dependencies and cleanup. We introduce CordisBench, a 1,200-question benchmark of this lifecycle reasoning. It combines a controlled formal setting with programs executed against Cordis, a runtime that manages component dependencies and cleanup, and asks models to identify affected components, predict state after a specified teardown order, determine which conditions hold under all or some orders, and choose reconfigurations that succeed when executed. Across these tasks, we evaluate three efficiency-oriented models at low reasoning effort with 2, 4, 8, 16, 24, or 32 relevant interactions, using deterministic task-specific scoring. Models usually handle small systems well but grow less reliable as more interactions become relevant, especially when predicting final state and when reasoning across teardown orders. Additional inference effort recovers marked gains for some models. The cost is nontrivial: on our 16-interaction subset, GPT-5.6 Luna uses nearly 3,000 reasoning tokens per question at medium effort. For these controlled instances, that cost is avoidable: an independent finite reference semantics agrees with Cordis execution on every observation and action outcome used for scoring across all 528 executable questions.

The Rise of Verbal Reinforcement Learning cs.CL

Natural language is emerging as a primary feedback channel for improving language agents, capable of conveying intent, preferences, and causal structure in forms interpretable by both humans and modern language models. We call this paradigm Verbal Reinforcement Learning (VRL) and offer the first unified account of it. We organize the field around a single axis, \textit{when} verbal feedback takes effect in an agent's lifecycle and \textit{what} it modifies, yielding three pillars: (1) \textbf{Language as Grounding Signal}, where language defines the task itself by specifying goals, states, and reward structures; (2) \textbf{Language as Deliberative Feedback}, where natural language guides reasoning at test time without the need to update model parameters; (3) \textbf{Language as Learning Signal}, where language-based feedback shapes model parameters through training. Within each pillar, we synthesize representative work, distinguish key subcategories of approaches, and outline the distinct role language plays in shaping agent behavior. Together, this taxonomy shows how verbal reinforcement is reshaping agent development, while also defining the challenges and opportunities for building more capable and aligned agents.

Facet-0: A Robotic Foundation Model for Contact-Rich Precise Manipulation cs.RO

Real-world robotic assembly at sub-millimeter tolerances demands spatial precision, compliant interaction, and robustness to contact failures. We present Facet-0, a robotic foundation model that predicts and values the contact consequences of its actions. Facet-0 unifies multimodal representation learning and reinforcement learning (RL) post-training around a joint action-wrench proposal: a causal wrench history is aligned with vision-language semantics and kinematic state, and flow matching generates each action chunk together with the future wrist-wrench profile it is expected to induce. Deployment rollouts train a distributional Action-Wrench Critic to distinguish motions with similar task progress but different contact outcomes, while phase-aware rewards and contact-selective credit concentrate policy improvement on decisive interactions. To accommodate part-specific dynamics, a lightweight bounded actor reuses the frozen representation for on-robot adaptation; RL remains defined over executable Cartesian actions, while an auxiliary wrench head preserves predictive, non-commanded action-contact coupling. Trained on ManuFacet-1K, a 1,000-hour force-synchronized corpus spanning three embodiments and multiple manufacturing cells, the bounded task-adapted system reaches 82% mean success on five sub-millimeter computer-assembly tasks, compared with 15% for the strongest baseline, with 0.5 mm placement accuracy and 50 ms command latency.

BenchmarksFull tables
Artificial AnalysisIntelligence Index

Composite score across coding, math, and reasoning

#ModelScoretok/s$/1M
1Claude Fable 5.165.768$20.00
2Claude Opus 563.148$10.00
3Claude Fable 562.159$20.00
4GPT-5.6 Sol60.977$8.00
5Grok 4.660.951$3.00
SWE-rebench

Agentic coding on real-world software engineering tasks

#ModelScore
1AnthropicFable 5 [high]Model64.5%± 1.41%
2GrokGrok 4.5 [high]Model63.8%± 0.60%
3AnthropicOpus 5 [high]Model63.4%± 1.35%
4Z.aiGLM-5.2 [high]Model62.9%± 1.19%
5OpenAIGPT-5.6 Sol [medium]Model62.3%± 1.83%