Google has made Agent and Model Evaluations generally available in Gemini Enterprise Agent Platform. The service connects development-time experiments with production-time monitoring, giving teams one place to score model answers, agent trajectories, tool use, safety, grounding, and task success.
That is the right shape of capability for agentic software. A coding agent is not only a text generator. It selects tools, supplies arguments, encounters errors, changes course, and produces a final artifact. Judging only the last paragraph misses the behavior that often determines whether a workflow is safe and useful.
What is now available
Google describes more than 20 pre-built metrics, including quality, safety, grounding, tool use, and trajectory measures. Teams can also create code-based metrics or LLM-as-a-judge metrics, store them centrally, and reuse them across agents. Experiments can run locally or server-side, with server-side artifacts retained in Cloud Storage for auditability and reproduction.
| Evaluation surface | Useful question |
|---|---|
| Final response quality | Did the agent produce a correct, usable answer? |
| Task success | Did the workflow actually complete the intended goal? |
| Tool use quality | Did it select the right tool and send valid arguments? |
| Trajectory quality | Did the agent take a sound path rather than succeeding by luck? |
| Online monitoring | Did behavior drift after a model, tool, or prompt change? |
Why coding teams should care
A coding harness can translate these categories into concrete checks. The final result may be a passing test or accepted pull request. Tool quality may mean no unsupported shell command, no malformed API request, and no unauthorised write. Trajectory quality may mean the agent inspected the relevant files before editing, kept changes in scope, and ran the requested tests before claiming success.
Use deterministic checks whenever possible. Test exits, JSON schema validation, type checks, security scanners, and exact output comparisons should do the work that they can do. Use an LLM judge for properties that are genuinely semantic or open-ended, then sample its verdicts against human review. A judge without a calibration loop is only another model opinion.
One caution about “GA”
The service is generally available, but Google’s current documentation distinguishes between the established evaluation module and newer interfaces such as the recommended GenAI Client, which may have different lifecycle labels. Treat the status of the exact SDK, API, and method you deploy as authoritative. Pin versions and keep preview-only interfaces behind adapters so an evaluation upgrade does not become a production outage.
A small quality flywheel
- Capture ten to twenty representative coding tasks, including known failure modes.
- Define pass/fail checks before the agent runs.
- Record final outcome, tool trace, human repair time, latency, and cost.
- Run the same set before and after a model, prompt, skill, or tool change.
- Sample real production traces with privacy controls and alert on material drift.
- Promote only the changes that improve your evidence, not merely a demo.
Trend signal
The August 4 Kimi WebBridge Google Trends check found ongoing relative interest in the major coding-agent terms. It cannot establish which platform is winning. It does reinforce the operating lesson behind this release, as teams use more agents and models, repeatable evaluation becomes more valuable than launch-day impressions.
Bottom line
Google’s GA release gives agent teams a more complete evaluation surface, not just “did the model write something plausible?” but “did the agent use tools safely, reach the right outcome, and stay reliable after launch?” That is the measurement loop a serious coding harness needs, regardless of which model is in the seat.