Skip to main content

5 Facts About AI Coding Agents from Comprehensive Benchmarking

AI coding agents are becoming more capable, but evaluating them is harder than it looks. Most benchmarks focus on a single dimension of agent capabilities; for instance, the popular SWE-Bench benchmark only focuses on fixing issues on open source Python repositories. Real-world software engineering involves fixing bugs of course, but it is a lot more multifaceted: in any single week a software developer may also debug complex issues, building a new greenfield script or app, improving test coverage, fix bugs on a frontend repo, research unfamiliar APIs – the list goes on.

The OpenHands Index addresses this by building a much broader benchmark evaluating language models across five distinct categories: Issue Resolution (fixing bugs), Greenfield development (building new applications), Frontend development (UI tasks requiring visual understanding), Testing (generating tests to reproduce bugs), and Information Gathering (research and documentation tasks). This diversity matters because no single benchmark can capture the full range of what developers actually need from AI assistants.

We’ve evaluated many models to date, including commercial APIs and open-weights models, across five benchmark categories. All results, including complete agent trajectories, are published openly on the site. Here are five key findings.

1. Open Models Achieve Strong Top Performance at an Order of Magnitude Less Cost

The most expensive models don’t always deliver proportionally better results. Across all five benchmark categories, the performance spread between models is often narrower than their cost differences.

Top-tier commercial models achieve average scores in the 55–65% range across all categories. Meanwhile, more economical options, including some open-weights models, achieve 45–55% at a fraction of the per-task cost. For a typical development workflow involving hundreds of agent invocations per month, this cost difference compounds quickly.

The takeaway: Teams can start with the most capable models to establish the feasibility of incorporating AI agents into their workflow, but if cost becomes a concern there are plenty of competitive options at a fraction of the cost.

2. Locally Deployable Models Now Compete with Commercial APIs

Related to the above, the gap between open-weights and commercial models has narrowed significantly. In our latest evaluations, several open-weights models achieved average scores within a few percentage points of leading commercial offerings across all benchmark categories.

In addition to cost, this matters for organizations with specific requirements around data privacy, on-premises deployment, or customization. Open-weights models can be fine-tuned for specific codebases, integrated with internal tooling, and deployed on dedicated hardware—options not available with API-only services.

The takeaway: Open-weights alternatives are now viable for production use cases, not just experimentation.

3. No Single Model Dominates All Categories

Performance varies substantially across task types. A model that leads in bug fixing (SWE-Bench) may rank mid-pack for greenfield development (Commit0) or information gathering (GAIA).

In our evaluations, the top performer in issue resolution scored only 56% on application building tasks. Conversely, the leader in information gathering achieved 80% on that benchmark but ranked fourth on bug fixing.

The takeaway: Model selection should be driven by your team’s actual task distribution. The OpenHands Index can serve as an initial guide about what models to take a look at, and then you can do “vibe checks”, systematic evaluations, or A/B testing with the top contenders.

4. Multimodal Tasks Remain Challenging

Frontend development tasks where agents must interpret screenshots, mockups, and visual requirements show the widest performance variance across models.

On SWE-Bench Multimodal, scores range from 22% to 42%, with most models clustering in the 27–36% range. Even top-performing models struggle with tasks requiring visual understanding combined with code generation.

The takeaway: Multimodal capabilities are still maturing. Teams working heavily on frontend development should expect more iteration cycles when using AI agents.

5. Transparent Benchmarking Catches Issues That Aggregate Scores Miss

Comprehensive evaluation reveals failure modes invisible in single-number scores. By publishing full agent trajectories, we’ve identified cases where models achieved correct outcomes through unintended shortcuts.

One recent example: analysis of our Commit0 (application building) results revealed that some models were retrieving code from git history rather than implementing it from scratch. After identifying this behavior through trajectory analysis, we updated the benchmark methodology, and several models’ scores dropped by 10–30 percentage points.

The takeaway: Transparent, reproducible benchmarks enable continuous improvement. Single-number leaderboards can obscure important details about how models actually perform.

Methodology

The OpenHands Index evaluates models across five benchmark categories:

  • SWE-Bench Verified – Fixing real GitHub issues from Python repositories
  • Commit0 – Building applications from specifications
  • SWE-Bench Multimodal – Frontend tasks requiring visual understanding
  • SWT-Bench – Generating tests to reproduce bugs
  • GAIA – Information gathering and research tasks

Each model runs in a sandboxed environment with access to standard developer tools. We measure accuracy (task completion rate), cost per task, and average runtime. All evaluation code is open source at github.com/OpenHands/benchmarks, and complete results—including agent trajectories—are published at github.com/OpenHands/openhands-index-results.

Explore the full results at index.openhands.dev.



from DevOps.com https://ift.tt/mwn78fR

Comments

Popular posts from this blog

Cursor’s New SDK Turns AI Coding Agents Into Deployable Infrastructure

For most of its life, Cursor has been an IDE. A very good one. But with the public beta of the Cursor SDK, the company is making a different kind of move — one that should get the attention of DevOps teams. The Cursor SDK is a TypeScript library that gives engineers programmatic access to the same runtime, models, and agent harness that power Cursor’s desktop app, CLI, and web interface. In short, the agents that used to live inside an editor can now be invoked from anywhere in your stack. That’s a meaningful shift in how AI coding tools fit into software delivery pipelines. From the Editor to the Pipeline If you’ve used Cursor before, the workflow is familiar — you interact with an agent in real time, asking it to write functions, fix bugs, or review code. The SDK breaks that dependency on interactive use. Now you can call those same agents programmatically, from a CI/CD trigger, a backend service, or embedded inside another tool. Getting started is a single inst...

Mistral Moves Coding Agents to the Cloud — and Gets Out of Your Way

For the past year or so, AI coding agents have been tethered to your local machine. You kick off a task, watch the terminal, and babysit every step. It works — but it’s not exactly hands-free. Mistral just changed that. On April 29, the Paris-based AI company announced remote coding agents for its Vibe platform, powered by a new model called Mistral Medium 3.5. The idea is simple: Instead of running coding sessions on your laptop, they now run in the cloud — asynchronously, in parallel, and without you watching over them. What’s Actually New Coding sessions can now work through long tasks while you’re away. Many can run in parallel, and you no longer become the bottleneck at every step the agent takes. That’s the core pitch. You start a task from the Mistral Vibe CLI or directly from Le Chat — Mistral’s AI assistant — and the agent handles the rest. When it’s done, it opens a pull request on GitHub and notifies you, so you review the result inste...

GitHub Resets Copilot Pricing as AI Compute Costs Surge

The development community saw this one coming: GitHub will transition its Copilot service to a usage-based billing model on June 1, replacing its existing system of fixed subscriptions supplemented by premium request limits. As reported last week, GitHub suspended new sign-ups for several of its Copilot subscription tiers as it faced a surge in demand from agentic coding workflows. To address that, under GitHub’s new pricing model, customers across individual, business, and enterprise tiers will receive a monthly allocation of AI credits, which are consumed based on token usage. This includes input, output, and cached data processed by underlying models. Once those credits are exhausted, users can purchase additional capacity at published rates. The change leaves base subscription prices intact. Individual plans remain priced at $10 per month for Pro and $39 for Pro+, while business and enterprise tiers continue at $19 and $39 per user per month, respectively. Each plan’s monthly ...