ZeroHour
MarkTechPostpublished ()ingested Michal Sutter1

Google Research Releases ToolGrad: Answer-First Framework Hits 99.8% Pass Rate for Tool-Use Data Generation

infoAI researchimportance 58
AI summary · glm-5.3-flash

Google Research and partners introduce ToolGrad, a verified tool-chain-first data generation framework reaching 99.8% pass rate and boosting Gemma-3-12B to 83.1 on BFCL.

Researchers from Google, the University of Tokyo, RIKEN AIP, and Tohoku University released ToolGrad, which inverts query-first tool-use data generation by executing and verifying API chains before annotating them with user queries. On the ToolBench database of 16,000+ APIs, ToolGrad raised generation pass rate from 63.8% to 99.8% while increasing tool uses per sample from 2.1 to 3.4 and cutting tool-use steps from 34.3 to 20.0. Fine-tuning Gemma-3 at 1B, 4B, and 12B parameters on the 500-sample ToolGrad-500 dataset lifted ToolGrad-12B to 83.1 on the Berkeley Function Calling Leaderboard, near Gemini 2.5 Pro at 83.2 and ahead of GPT-5 at 74.4. Code is Apache-2.0, with the dataset, PyPI package, and models available on Hugging Face.

  • ToolGrad builds verified tool chains first, then generates matching queries, eliminating failed DFS exploration.
  • Pass rate on ToolBench data generation rose from 63.8% (query-first) to 99.8%.
  • ToolGrad-12B scored 83.1 on BFCL, outperforming its Gemini 2.5 Flash-Lite teacher.
  • Only 500 training samples produced frontier-competitive tool-use performance in open 12B models.
  • Apache-2.0 code, ToolGrad-500 dataset, and 1B/4B/12B models are publicly released.
Full article744 words · extracted from marktechpost.com · click to collapse

Training an LLM to call tools reliably requires datasets that pair user queries with correct tool-use chains. Producing that data at scale has been slow and expensive. A team of researchers from Google, the University of Tokyo, RIKEN AIP, and Tohoku University introduce ToolGrad. The research work inverts the usual pipeline: build a verified tool chain first, then write the query. Gemma-3 models fine-tuned on 500 samples of the resulting data reach scores that sit alongside frontier proprietary models on the Berkeley Function Calling Leaderboard.

Is it deployable? Yes. The code is Apache-2.0, the ToolGrad-500 dataset and the 1B, 4B, and 12B models are on Hugging Face, and there is a PyPI package.

The problem with query-first generation

Prior pipelines such as ToolBench and ToolACE follow a query-first recipe. The system samples a pool of APIs, asks an LLM to invent a plausible user instruction, and then dispatches a depth-first search (DFS) agent to find a tool-use path that satisfies it. The search has no guarantee of success. When it dead-ends, the compute spent on exploration is wasted, and the sample is discarded. The paper frames this as distilling valuable trajectories from a complex and often failing agent exploration, which is inherently inefficient.

ToolGrad reverses the order. It first constructs a ground-truth tool-use chain by actually executing APIs, then annotates that chain with a matching user query. An explicit, working chain is far less ambiguous than a hypothetical prompt, so the chain-to-query step takes a single LLM call.

Four modules in a loop

Each iteration runs four modules in sequence:

  • API Proposer narrows a sampled set of APIs down to a few candidates that could extend the current workflow.
  • API Executors run those candidates in parallel and produce detailed execution reports.
  • API Selector reviews the reports, picks the single best-performing call, and appends it to the workflow. Its directional feedback is the textual gradient.
  • LLM Updater rewrites the synthetic user query and AI response so they match the new API set.

Repeating the loop yields one sample: a user query, a verified API workflow, and the final response. The repository’s default configuration runs 10 iterations over 50 sampled APIs per workflow.

Generation efficiency on ToolBench

The research team evaluated data generation on the ToolBench API database, which contains 16,000+ real-world APIs, and compared ToolGrad against ToolBench’s DFS-based query-first approach. According to the research paper:

  • Pass rate rose from 63.8% (DFS) to 99.8% (ToolGrad).
  • Ground-truth tool uses per sample rose from 2.1 to 3.4, meaning longer chains.
  • Tool-use steps per sample fell from 34.3 to 20.0.
  • LLM invocations per sample fell slightly, from 64.5 to 63.9.

The 0.2% failure case occurred when the agent could not get a successful response from 3 selected APIs across all 10 iterations and saved an empty sample.

Interactive explainer

BFCL results with Gemma-3

The researchers generated ToolGrad-500, a 500-sample dataset built with Gemini 2.5 Flash-Lite, and used it to post-train Gemma-3 at 1B, 4B, and 12B parameters. They evaluated on the Berkeley Function Calling Leaderboard, which uses a tool set that differs from ToolBench, making it an out-of-distribution test with unseen tools. Findings reported by the authors:

  • Fine-tuning on ToolGrad-500 improved tool-use scores at every parameter size.
  • ToolGrad-12B scored 83.1, compared with Gemini 2.5 Pro at 83.2, Claude 4.5 Opus at 82.8, and GPT-5 at 74.4, as measured at the time of publication.
  • The 12B student outperformed Gemini 2.5 Flash-Lite, the teacher model that generated its training data.
  • ToolGrad-12B led open tool-use specialists including ToolACE and Hammer-2.1-7B.

The repository’s reproduction scripts target BFCL V1 and V2 through a customized fork, run inference in a vLLM Docker image, and were verified on a single NVIDIA A100 40GB.

Key Takeaways

  • ToolGrad flips tool-use data generation: verify the chain first, write the query second.
  • Pass rate jumps from 63.8% to 99.8% on ToolBench, with longer chains and fewer tool steps.
  • Only 500 samples lift Gemma-3-12B to 83.1 on BFCL, next to Gemini 2.5 Pro at 83.2.
  • The student model beats its Gemini 2.5 Flash-Lite teacher.

Check out the Paper, GitHub Page, and Google Research Blog. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us

Text extracted automatically; images, tables and formatting may be missing. Original: https://www.marktechpost.com/2026/09/10/google-research-releases-toolgrad-answer-first-framework-hits-99-8-pass-rate-for-tool-use-data-generation/