Hugging Face introduces agent-focused benchmarking harness for open models
New open-source harness evaluates how efficiently coding agents use software tools, using transformers as a case study and running all evaluations on identical hardware via Hugging Face Jobs.
1 source · cross-referenced
- Hugging Face published an agent-focused benchmarking harness to evaluate how efficiently open models use software tools like transformers.
- The harness measures agent effort (tokens, turns, latency) beyond just final-answer correctness.
- Evaluations run on identical hardware via Hugging Face Jobs with results stored in a Hugging Face Bucket.
- The post uses transformers as a case study and provides a CLI, Skill, and curated examples to simplify agent interactions.
Hugging Face published a human-made, agent-focused blog post introducing a benchmarking harness designed to evaluate how efficiently open models use software tools, with transformers as the case study. The authors argue that traditional benchmarks that only check final-answer correctness miss critical differences in how agents achieve those answers, such as token usage, latency, and failure rates.
The harness measures agent effort across multiple dimensions—tokens consumed, turns taken, and wall-clock time—rather than only whether the agent produced the correct label. It evaluates three distinct tiers of tooling support: bare pip install of the library, a full clone of the source repository, and a packaged Skill that includes curated documentation and task-specific examples. Each tier offers a different kind of assistance to the agent, and the harness runs each configuration independently to isolate the impact of tooling changes.
All evaluations are executed on identical hardware using Hugging Face Jobs, ensuring fair comparisons across models, library revisions, and tasks. Results are stored in a Hugging Face Bucket, enabling high-throughput, versioned storage of traces and metrics. The authors note that large open models may achieve near-perfect task completion rates, making final-answer metrics less informative; instead, the harness emphasizes the agent's path to success and the efficiency of that path.
The post includes concrete examples of how two agents can arrive at the same correct sentiment classification using dramatically different approaches—one writing and debugging a multi-line Python script, the other using a single CLI command—highlighting the importance of agent-optimized interfaces. The authors also describe their software principles for agentic tooling: if it isn't tested for agentic use, it doesn't work; if it isn't documented for agent access, it doesn't exist.
The benchmarking harness is designed to be reusable beyond transformers and can be applied to any tool that can be operated from the command line. The authors provide a simple implementation of the harness and invite community adoption, noting that the full sweep of model × revision × task runs are fanned out across Hugging Face Jobs to ensure consistency and scalability.
- Jun 20, 2026 · The Verge — AI
Adobe Firefly AI studio update adds persistent project context and reusable assets
Trust72 - Jun 20, 2026 · The Verge — AI
Adobe rolls out AI assistants for Photoshop, Premiere, and other Creative Cloud apps in public beta
Trust79 - Jun 20, 2026 · Simon Willison’s Weblog
Datasette Apps plugin lets users host custom HTML+JavaScript apps inside Datasette
Trust84