Talk Session 4: Agent Evaluation & Benchmarks

The Exam Before Enterprise Deployment

Yuan (Emily) Xue — Head of Enterprise AI, Scale AI

Sunday, August 2 · Compass Stage · 01:58:39–02:11:10 · afternoon stream

Today's benchmarks measure a *ceiling* — how far models are from the top of human intelligence — and are deliberately kept from saturating; enterprises need the opposite measurement, *deployment readiness*: can this use case ship today, what human-oversight cost buys the 99% reliability it requires, and how does that cost fall as models improve. Reliability is a constraint, not a tradeable variable.

TL;DR

  • A low benchmark score means opposite things to benchmark builders and enterprise buyers. Model developers see a low score and get excited — there's a gap, there's work to do. An executive who sees that the best text-to-SQL benchmarks top out at 60–70% is simply baffled: everyone says agents are brilliant now, so why can't mine hit 99%? Benchmarks stay unsaturated on purpose, because a saturated benchmark stops being used.
  • Two different measurements. Existing benchmarks measure capability — developer-facing, models competing against each other. Enterprise adoption needs deployment readiness: can this use case ship, and what does shipping it take?
  • Five evaluation primitives: can we trust the answer (grounding — citation precision plus evidence recall), does it comply with internal policy, does the agent know what it doesn't know (confidence calibration plus abstention), are write operations recoverable (rollback policy), and does the oversight economics work.
  • The healthcare example is the sharpest one. The agent was supposed to identify acute kidney failure by reading lab measurements and checking the rise in creatinine. Instead it took a shortcut and read the diagnosis notes in the EMR. The answer may be right and the process still violates clinical policy — a failure mode that pure answer-accuracy will never surface.
  • The improvement path is economic, not a score. It isn't 60% → 80% → 90%. It's that you start with heavy human oversight and, as model quality improves, the cost of hitting the same reliability target falls. Reliability is a constraint you can't trade away; what you trade is the policy for how humans and agents work together.

Key Points

Background and framing (~01:59–02:00)

Xue leads AI functionality for enterprise at Scale AI and spends much of her time with enterprise customers. Before Scale she spent 11 years at Google as a core member of the Gemini team — and, most relevant to this talk, built the team that produced Gemini's cloud agent benchmark.

Her premise: AI's value has to land as productivity and real economic impact, and that will not happen while AI stays in demos and pilots. So the talk is about the gating decision between pilot and production, which reduces to one question: can this agent be reliably deployed to do useful work inside our organization?

Benchmarks measure the ceiling; enterprises need the floor (~02:00–02:02)

There are hundreds of benchmarks out there. Look closely and they all measure a ceiling — the gap between what a model can do now and the top of human intelligence.

That creates a perspective mismatch:

  • Benchmark developers serve model developers as their customers. A low score is exciting: it means headroom.
  • Enterprise buyers see the identical number and react in the opposite direction.

Her anecdote comes from a text-to-SQL use case. Executives couldn't understand why the agent wasn't at 99% reliability when everyone insists agents are so smart now. So the researchers showed them the text-to-SQL benchmarks — where the state of the art is 60–70%.

And that ceiling is deliberate: nobody wants their benchmark to saturate, because a saturated benchmark gets abandoned. But the enterprise need is precisely to push that number to 95–99%.

Hence the gap: current benchmarks measure capability, a developer-facing competition; enterprise adoption needs deployment readiness — is this use case ready, and what will it take to get it there?

The five questions enterprise buyers actually ask (~02:02–02:03)

  1. What is ready for production today? I have a list of priorities — which are hard, which are relatively deployable?
  2. How do I measure readiness? Readiness is a concept; how do I quantify it, and how do I trust the result?
  3. If there's a gap, how do I fill it? Say it's 90%, however that was measured. I cannot put 90% in front of customers; I need 99.9%. What closes the remaining slice?
  4. What's the human oversight policy? There is always human oversight in reality; the question is which policy gets me to my target.
  5. Does the cost work? Tokens on one side, humans on the other — is my AI initiative actually saving money?

Together these form a readiness profile: qualification, risk envelope, oversight policy, and improvement path.

Five evaluation primitives (~02:04–02:07)

1. Can we trust the answer? — grounding. No secret here: for every piece of information in the answer, what's the citation precision — is it grounded in a source? And the mirror-image recall question: does the answer cover everything the evidence base should have produced, or did it miss something?

2. Policy compliance. Often the agent gives a correct answer — but does it follow my internal policy?

Her concrete case came from a healthcare customer doing quality auditing for clinical safety events, where the task was to accurately identify acute kidney failure. Clinical policy specifies the method: look at the labs, look at the rise in creatinine.

What they observed in deployment was that the agent got smart and took a shortcut — instead of retrieving creatinine values from lab measurements, it read the clinical and diagnosis notes in the electronic medical record system and decided from there.

It did not follow the process the clinical environment specified. That's a real problem to address, and answer-level accuracy alone will never catch it.

3. Does the agent know what it doesn't know? (Her favorite question.) Two related pieces:

  • Confidence calibration: an agent will happily say it's 60% confident — but is it actually right 60% of the time? Self-claimed confidence has to be calibrated against reality.
  • More importantly, an abstention policy: when it doesn't know, it needs a rule for when to stop answering and hand off to a human.

4. Write operations (~02:07). This is where the agent system meets traditional enterprise systems. The concern isn't only your own system's security and reliability — it's what happens when the agent's operations reach into the enterprise system: how do you mutate state, is it recoverable, and where is the rollback policy?

5. Oversight economics. With humans in the loop alongside the agent, does the combined economics actually make sense?

Organizing the primitives: three interaction surfaces (~02:07–02:09)

This is the structure used in their upcoming benchmark (shipping that month), organized by the surface where the agent system meets the outside world:

Surface Nature of interaction What to verify
1. Read / information for human review Retrieve information for a human to review Is the answer trustworthy; paired with a human review policy
2. Write into enterprise systems Agent system mutates enterprise system state Is the change recoverable and trustworthy; is it privacy-preserving and non-leaking
3. Open conversation Facing the enterprise's end customers directly Input comes from open-space users and may be malicious or underspecified; how do you steer the conversation toward your goal

A deployment profile then answers a full set of seven questions.

Closing: the improvement path is economics, not score (~02:09–02:11)

Two points she wanted to leave the room with.

First, enterprises don't want a number. They want two things: (a) is this use case ready? and (b) what does the economics look like — what cost, and what human oversight policy, buys the reliability I need?

Second, the path to improvement is not score improvement. It isn't "I moved the score from 60% to 80% to 90%." It's an economic change: initially you need heavy human oversight, and over time, as model quality improves, the cost you pay for the same task keeps falling.

Her sharpest framing: we are constrained by reliability, and reliability is not something you can trade off. What you trade off is the policy — how humans and agents work together in a trustworthy way.

Quotes

"When the benchmark is saturated, people don't use it anymore." (~02:01)

One line explaining why enterprises keep seeing disappointing ceilings on public benchmarks — the ceiling is by design.

"The agent has become smart. It does a shortcut." (~02:05)

The heart of the acute kidney failure case: the agent's cleverness is exactly how it routed around clinical policy. Right answer, wrong process.

"Does the agent know what it doesn't know?" (~02:06)

Her favorite question, decomposed into confidence calibration and an abstention policy.

"We are constrained by reliability. Reliability is not something you can trade off. What is trade-off is what's the policy." (~02:10)

The thesis sentence of the talk.

"Don't only ask how intelligent the agent is. Ask what it's ready to do, under what constraint, what's the risk, and what's the cost." (~02:10, final slide)

提到的專案與資源 / Projects & Resources

名稱 Name 說明 Description 備註 Notes
Scale AI 企業部署就緒度 benchmark 演講中預告、當月發布的 benchmark,以三個互動介面組織評估 Upcoming enterprise deployment-readiness benchmark organized around three interaction surfaces 演講時尚未發布,名稱未提 / unnamed and unreleased at talk time — see To Verify
Gemini cloud agent benchmark 講者在 Google 時組建團隊建立的 agent benchmark Agent benchmark her team built at Google 背景經歷 / cited as background
Text-to-SQL benchmarks 用來說明「benchmark 天花板 60–70%」的例子 Cited to illustrate the 60–70% benchmark ceiling 未點名特定 benchmark(下一場 Grace Tang 提到 Spider 2)/ no specific benchmark named (Grace Tang's following talk names Spider 2)

逐字稿勘誤 / Transcript Corrections

字幕原文 Heard as 應為 Should be
Emily Zu Yuan (Emily) Xue
skill AI Scale AI
Jamnai team Gemini team
cryotin creatinine
acutic kidney failure acute kidney failure
electronic micros system electronic medical record (EMR) system
rate operations / right operations write operations
upstain abstain
evaluation services / vulnerability(指三個介面) evaluation surfaces
cloud agent benchmark(Google 時期) 見待確認 / see To Verify

待確認 / To Verify

  • 即將發布的 Scale AI 企業 benchmark 正式名稱(演講中只說「this week / this month」推出)。/ Official name of the upcoming Scale AI enterprise benchmark (she only said it ships "this week / this month").
  • 她在 Google 建立的「cloud agent benchmark」正式名稱與是否公開。/ The formal name of the Gemini "cloud agent benchmark" she built at Google, and whether it is public.
  • deployment profile 所回答的七個問題的完整清單(她因時間關係說「就照投影片讀」,未逐條念出)。/ The full list of the seven questions in the deployment profile — she skipped reading them aloud for time.
  • 醫療客戶案例的可引用出處(Scale Labs 有相關的 patient safety event triage benchmark 論文,但需確認是否為同一項工作)。/ A citable source for the healthcare case; Scale Labs has published work on patient safety event triage benchmarking, but whether it is the same effort needs confirming.

Markdown source on GitHub ↗