
The cost of running AI models continues to decline, but the focus of competition has shifted away from the models themselves. This week’s developments from Zed, Anthropic, and OpenRouter highlight why the surrounding software infrastructure now holds greater importance than the models at their core.
Five of the week’s most-read stories centered on a single theme: transforming AI models into practical tools for users. This involves the harness—the collection of tools, interfaces, and systems that provide context, link external services, direct tasks, and validate results. While model performance still dominates headlines, companies are increasingly directing investment toward the infrastructure that enables real-world AI applications.
Zed Introduces Delta Threaded Review System
Zed introduced Delta in public beta, a system designed to replace traditional pull requests with shared discussion threads. The concept is straightforward: code reviews should not require handling between fragmented diffs and scattered comments. Delta keeps conversations directly tied to the codebase, while DeltaDB tracks changes at a granular level—down to individual edits.
Nathan Sobo, Zed’s CEO, framed the transition by saying the industry is currently focused on rebuilding code collaboration. His argument centers on how traditional diffs reveal only the final state of changes while obscuring the reasoning behind them. Delta addresses this by maintaining a continuous thread of discussion alongside the code. Internally, Zed’s team implemented 570 modifications to Delta’s main branch without submitting a single pull request, a claim supported by the company’s repository data. While the public Zed editor continues to accept pull requests, the direction is clear.
GitHub’s Commit Surge Highlights Collaboration Demand
In contrast, GitHub reported 2.9 billion monthly commits in August, up from 1.4 billion in April. Even accounting for an eight-hour service disruption that month, the figures demonstrate Git’s enduring dominance in developer workflows. Yet the demand for modernization is rising. Competitors such as Cursor’s Origin and GitLab’s Project Switch are also rethinking collaboration tools to accommodate AI-assisted development.
Anthropic adopted a different strategy by merging its Claude Chat and Cowork interfaces into a single system. This eliminates the need for users to determine upfront which tool best suits a given task. The company said people used both tools and found the decision-making process frustrating. The update is initially available to Pro and Max subscribers, with broader access planned for later.
OpenRouter Offers US-Based Routing Service
This shift reflects broader economic pressures. Companies are prioritizing the layers surrounding AI models over the models themselves. For example, OpenRouter recently made its US in-region routing service generally available for business clients. The platform decrypts, processes, and delivers requests within U.S. data centers—or rejects them if compliance requirements cannot be met.
Open models dominate usage, closed systems retain revenue
Open-weight models now account for 60% of OpenRouter’s U.S.-based token consumption, with Chinese models like DeepSeek V4 Pro, Kimi K3, and GLM 5.2 driving significant demand. However, the country of origin and processing location remain distinct considerations. OpenRouter’s value lies in granting companies control over the latter—a critical factor as 77% of businesses now evaluate an AI solution’s country of origin when selecting vendors, according to a Deloitte survey.
Stripe’s reported $8 billion acquisition of OpenRouter shows the strategic importance of this infrastructure layer. Economic trends support this focus: Vercel’s September AI Gateway Production Index shows open-weight models now handle 56% of token volume on its platform, up from 7% in December 2025. Despite this usage, they generate only 14% of estimated spending, while closed models such as Anthropic’s Claude dominate revenue despite lower adoption rates.
Teams processing over 10 million tokens monthly experienced a 7.6% reduction in per-token costs in August, following a 2.9% decline in July. The downward trend in inference pricing accelerates, but the true expense lies in the harness, the connectors, authentication systems, and observability tools required for scalable AI deployment.
Real-SWE Benchmark Shows Agent Success Rates
A benchmark from Specific Labs, called Real-SWE, assessed coding agents on real-world tasks drawn from private repositories. The top-performing setup, a Claude Fable 5.1 model accessed through Claude Code, succeeded in 38.8% of cases. GPT-6 Astra, when used via Codex CLI, achieved 33.8%, while Gemini 3.8 Flash through its CLI reached 31.2%. No configuration exceeded 40% success.
Abhilash Rao Mesala, a Meta data engineer, outlined a practical solution in a recent guide: LLM response caching. By reusing responses when requests, context, permissions, and underlying data remain unchanged, teams can achieve substantial cost reductions. His example begins with 1 million monthly calls priced at $0.006 each, totaling $6,000. With a 60% cache hit rate and $150 in additional embedding and vector-store expenses, the total drops to $2,550, a 57.5% savings. This approach leverages a principle predating transformer models.
Vercel’s AI Gateway Production Index for September exposed a deeper economic divide. While open-weight models now account for 56% of all requests on the platform, closed models still capture 86% of estimated spending. This discrepancy reveals that enterprises are willing to pay premiums for consistency, even when cheaper alternatives exist. Anthropic’s Claude alone represents 64% of estimated spending among closed models, despite GPT-6 Astra, launched just 12 days before the report, accounting for only 7.7% of the total.
The cost of inference itself continues to fall. This marks the third consecutive monthly reduction, with Vercel reporting a 23.2% year-over-year decrease in average token pricing. The trend accelerates the push toward harness solutions, tools that manage, optimize, and secure AI interactions rather than the models themselves. Boris Renski, CEO of Apelogic, summarized this shift in a recent interview: “Companies are buying the harness around inference now, and Zed, OpenRouter, and Anthropic all spent this week selling it.” The Cloud Native Computing Foundation (CNCF) reinforced this perspective, noting that enterprises now treat AI integration as an infrastructure challenge rather than a model-centric concern.
The Specific Labs Real-SWE benchmark further illuminated the harness challenge: even the highest-performing agents struggle with real-world tasks. The test, conducted on private codebases, showed that Claude Fable 5.1, the top performer, succeeded in only 38.8% of attempts. GPT-6 Astra and Gemini 3.8 Flash trailed further, with none surpassing 40% success. Failures were not due to missing data—agents had access to all required information—but stemmed from missed requirements and flawed integrations. The benchmark’s small scale—10 tasks with eight attempts each—highlights a broader issue: real-world codebases are fragmented, with solutions typically spanning 11 files, far exceeding the complexity of public benchmarks. The harness must bridge this gap by ensuring agents not only retrieve data but also verify and correctly apply it.
