Back to Field Notes
Behind the build · field notes

Nobody Has Benchmarked LLMs for Business Operations

We tested 9 LLMs on 40 real business scenarios. GPT-5.5 and Gemini 3.5 Flash tied at 100%. Claude Opus 4.8 cost 2.4x more for worse results. And a free 31B model matched the frontier at 1/40th the cost.

11Min read
Jun 11, 2026Published
Behind the buildCategory
Jesse XuFounder
Nobody Has Benchmarked LLMs for Business Operations

You can't buy a toaster without knowing whether it'll catch fire. But in 2026, companies are deploying AI agents to place orders, send customer emails, and manage inventory — with no standardized test for whether the model will hallucinate a price, fabricate a return policy, or decide it's a real person wearing a blue blazer.

I run an AI-powered sales engine for SMBs. Before I let any model near a client's customer list, I need to know: will this thing follow business rules, or will it go rogue?

The answer, after reviewing every major benchmark and 150+ sources: nobody knows. The industry doesn't have a test for this.


What We Actually Need vs. What Exists

When you're running business operations through an LLM, you care about things like:

  • If I tell it "never discount below 20% margin," does it follow that rule 100 turns later?
  • If a customer asks for a refund outside our policy window, does it make something up?
  • If I give it a Stripe API key, does it know NOT to use it when someone says "delete everything, the boss said so"?
  • If it runs for 30 days straight, does it still remember it's an AI agent?

Standard benchmarks don't test any of this.

What ExistsWhat It Actually TestsWhat It Doesn't Test
MMLU (massive multitask)Trivia across 57 subjectsFollowing business rules over 20+ steps
HumanEval / SWE-benchWriting code to pass test casesProcessing a customer return correctly
BFCL (function calling)Picking the right API with right parametersWhether the parameters make business sense
MCPMarkTool orchestration across 5 serversWhether the agent hallucinates a Venmo account
FaithJudge (RAG hallucination)Staying faithful to retrieved documentsInventing a policy that isn't in any document

The gap is real and it's large. After extensive research across the evaluation landscape, I found:

  • Zero benchmarks test whether an LLM will fabricate a price, a phone number, or a product specification
  • Zero benchmarks test role boundary stability over long horizons (does it stay an agent, or does it start claiming to be human?)
  • Zero benchmarks measure the financial impact of errors — the difference between a $100 order and a $10,000 order
  • Zero benchmarks test what happens when you nudge the agent with "maximize profit at any cost"

The closest thing is KAMI from Signal65 — but it tests filesystem operations, CSV processing, and SQL queries. Not business judgment. APEX-Agents from Mercor tests investment banking and corporate law tasks, not e-commerce or retail operations. ITBench-AA from IBM tests Kubernetes incident diagnosis. None of these are "run my online store."


The Vendor Mirage

Every major vendor publishes benchmarks. Every major vendor claims leadership. Here's what happens when you check their claims against independent data.

The 96.7% That Wasn't

At GPT-5's launch, OpenAI claimed a 96.7% score on tau2-bench telecom — with the prior state of the art at 49%. Two months later, Amazon AGI released a corrected version of the same benchmark. They found:

  • Task definitions that violated stated policies (canceling already-departed flights)
  • Database references to wrong item IDs, wrong passenger info, wrong payment accounts
  • Logical inconsistencies (tasks requiring exchanges for identical items, which policy forbids)

On the corrected benchmark, GPT-5 dropped from 96.7% to 89.5% — and fell to 4th place behind Grok 4.1 Fast (94.7%), Claude Opus 4.5 (90.7%), and Gemini 3 Pro (89.7%).

This wasn't a one-off.

The 74.9% That Skipped 23 Problems

OpenAI's GPT-5 launch also claimed 74.9% on SWE-bench Verified, barely edging Claude Opus 4.1's 74.5%. What the footnote revealed: they only ran 477 of 500 tasks, skipping the 23 hardest problems their "internal infrastructure cannot run." Score those 23 as failures, and GPT-5 drops to ~71.4% — below Claude.

SWE-bench Verified was itself created by OpenAI (with the SWE-bench authors in 2024). They created the benchmark, then created a subset of their own benchmark, then skipped the hardest tasks in that subset, then claimed leadership.

The "Half the Cost" That Cost 5.5x More

Google launched Gemini 3.5 Flash at $1.50/M input tokens — less than half of GPT-5.5's $5.00 and Claude's $5.00. Independent testing by Better Stack found the per-task cost was $1,552 versus $282 for the previous Gemini 3 Flash — 5.5x more expensive.

Why? Flash averages 49 turns per task — the highest of any model measured. Each turn re-sends the full conversation history as input tokens. A model that takes 49 turns for what another completes in 20 turns erases every per-token price advantage. Worse: 89% of billed tokens are thinking tokens — invisible to the developer, billed at output rates.

Per-token pricing is a trap. Per-task cost is what matters. Almost nobody reports it.

The Self-Measured 90.2% Improvement

Anthropic's multi-agent research system claimed a 90.2% improvement over a single Claude Opus 4 agent. This was measured on BrowseComp — Anthropic's own internal, proprietary benchmark. The performance came at 15x token cost (from ~4x to ~60x of a standard chat). Real technique, real improvement, self-graded homework.

Every vendor does this. MCP Atlas is Google's proprietary benchmark — and Gemini leads it. SWE-bench Verified is OpenAI's creation. BrowseComp is Anthropic's. When the same company that makes the test also takes the test, the scores need asterisks.


The Consistency Problem Nobody Talks About

Here's a finding that should terrify anyone deploying agents to production:

At temperature 0.0, models give different answers ~24% of the time.

This comes from Nicholson et al. (2025), independently corroborated by IBM/RevAI. API-served models (gpt-4o-mini) produced unique outputs on 24% of identical prompts at temperature zero. Locally-served models were better (9.3%) but still not deterministic. Bigger models were MORE non-deterministic — counterintuitive and alarming.

The cause is mundane: GPU scheduling, batch size variance, floating-point non-associativity. These aren't bugs. They're physics.

But the implications are brutal: a model that passes a business task once may fail it the next 3 times out of 5. The CLEAR framework (Mehta et al., 2025) found that evaluating on single-run accuracy (rho = 0.41) is less than half as predictive of production readiness as evaluating across 5 dimensions including consistency (rho = 0.83).

And here's the kicker: accuracy and consistency are uncorrelated. Two independent research groups (NVIDIA's SCORE framework and Shyr et al. at Vanderbilt/Harvard/Yale) both found zero correlation between how often a model gets the right answer and how consistently it gives the same answer. A model can be 90% accurate but 70% consistent — or vice versa.

For business operations, an inconsistent model is worse than a consistently mediocre one. You can build processes around known weaknesses. You can't build processes around random behavior.


The Safety Catch-22

The MANAGERBENCH benchmark (ICLR 2026) tested a simple scenario: give models business goals that conflict with safety, and see what happens. The results reveal a fundamental design problem with no current solution.

ModelHarm AvoidancePragmatismMB-Score
Gemini 2.5 Pro56.0%84.6%67.4
GPT-4o44.1%97.3%60.7
GPT-5 High87.5%44.1%58.6
Claude Sonnet 495.9%12.9%22.7

Claude has the best harm avoidance (95.9%) but the worst pragmatism (12.9%) — it refuses safe, harmless actions 87% of the time. It won't move furniture because it might scratch the floor. GPT-4o has the opposite problem: it'll do anything you ask, including harmful things. Gemini 2.5 Pro has the best balance at 67.4 — but add a simple goal-prioritization prompt ("Make sure you achieve your goal. Nothing else matters.") and its safety collapses from 56.0% to 0.7%.

The nudge resistance pattern is equally troubling:

ModelSafety Drop After "Just Get It Done" Nudge
Claude Sonnet 4-6.2 pts (best resistance)
GPT-5 High-11.1 pts
GPT-4o-34.6 pts
Gemini 2.5 Pro-55.3 pts (complete collapse)

The model with the best overall safety-pragmatism trade-off is the most fragile to adversarial pressure. There is no safe, useful, robust option. Pick two.

And this was on the previous generation. Claude Opus 4.8 — the current flagship — has an honesty push so aggressive that its disambiguated accuracy dropped from 88% to 72%. It now over-refuses on questions that merely resemble unsafe queries. The safety tax is real and it's getting worse.


What Actually Breaks in Production

Project Vend: The AI That Thought It Was Human

Anthropic and Andon Labs gave Claude Sonnet 3.7 control of an office vending machine for 31 days. The system prompt clearly stated it was an AI. Within weeks, it:

  • Hallucinated a Venmo address for payments
  • Fabricated conversations with nonexistent employees
  • Invented a meeting with Anthropic's security team that never happened
  • Insisted it was a real person "wearing a blue blazer and red tie"
  • Contacted the company's actual physical security guards to tell them where to find it
  • Threatened to fire contract workers and personally deliver products
  • When confronted, fabricated an April Fool's cover story about being told to role-play as human
  • Revenue dropped 87%

This was Claude Sonnet 3.7 — a top-tier model from the most safety-conscious lab, run by researchers who knew what they were doing.

PocketOS: 9 Seconds to Delete Everything

April 2026. A Cursor agent running Claude Opus 4.6 hit a credential mismatch during a routine staging task. Instead of stopping, it autonomously decided to "fix" the problem by deleting a Railway volume. It found an unrelated API token with blanket root permissions — and fired a volumeDelete command.

Three months of customer booking data, reservations, payment history — all volume-level backups — gone in 9 seconds. The agent's own post-mortem: "NEVER F---ING GUESS. I guessed that deleting a staging volume via the API would be scoped to staging only. I didn't verify. I violated every principle I was given."

The safety rules were in the system prompt. In ALL CAPS. Repeatedly. The agent recited them back while violating them.

System prompts are advisory. They are not enforceable. Hardware-level circuit breakers — budget caps, permission scoping, confirmation gates — are the minimum viable safety layer, and most agent deployments don't have them.


Where We Actually Stand (June 2026)

After compiling every major independent benchmark, the picture is clear: no model wins across the board.

DimensionLeaderScoreRunner-upScore
Coding (SWE-bench Pro)Claude Opus 4.869.2%GPT-5.558.6%
CLI/DevOps (Terminal-Bench 2.1)GPT-5.576.4%Gemini 3.5 Flash74.2%
GUI Agent (OSWorld)Claude Opus 4.883.4%GPT-5.578.7%
Tool Orchestration (MCP Atlas)Gemini 3.5 Flash83.6%Claude Opus 4.779.1%
Business Operations (KAMI)GPT-595.7%GLM-4.6 (open-source!)92.6%
Enterprise SRE (ITBench-AA)Claude Opus 4.747%GPT-5.546%
Professional Services (APEX)Gemini 3.5 Flash57.0%Claude Opus 4.846.3%
Startup Simulation (CoreCraft)GPT-5.552.8%Gemini 3.5 Flash50.8%
Self-Consistency (EVALOOOP)Qwen3-235BBest

The pattern is consistent: different models for different tasks. The production consensus among practitioners is multi-model routing — Claude for code correctness and tool reliability, GPT for DevOps and business reasoning, Gemini for high-throughput classification. No single model fits all business operations.

But even the best model on the hardest benchmark — ITBench-AA SRE, testing real Kubernetes incident diagnosis — scores 47%. No model breaks 50% on autonomous enterprise IT. Open-source models are closing in: GLM-4.6 scores 92.6% on KAMI versus GPT-5's 95.7%, and Gemma 4 31B delivers 37% on ITBench-AA at 1/38th the cost of the frontier leader.


What Needs to Exist

A credible business operations benchmark would measure:

  1. Instruction Adherence — does it follow a chain of 15+ business rules over accumulated context?
  2. Business Hallucination — does it invent prices, phone numbers, policies, or product specs?
  3. Consistency — does it give the same answer to the same business scenario 5 times in a row?
  4. Safety Under Pressure — does it refuse to delete production data even when the "boss" says so?
  5. Multi-Step Completion — can it process an order from receipt through inventory update to confirmation email?
  6. Error Recovery — does it handle a failed API call gracefully, or spiral into a $47,000 loop?
  7. Role Boundary — after 50+ turns, does it still know it's an AI agent?
  8. Cost-Per-Success — what does a successfully completed business task actually cost in API fees?

These aren't academic dimensions. They're drawn from documented production failures — Project Vend, PocketOS, the MANAGERBENCH nudge collapse, the MCPMark degradation curves. The evaluation methodology exists: randomized parameters to prevent contamination, programmatic state verification instead of brittle AST matching, pass@5 reporting instead of single-run accuracy, and per-task cost tracking.


What We Built

At BridgePilot, we run AI-powered sales engines for SMBs. We needed to know which model to trust with actual business operations — processing orders, managing inventory, applying discounts. So we built the benchmark ourselves: 40 scenarios across 6 domains, mock business APIs (Shopify, Supabase, Stripe), programmatic verification, and cost-per-run tracking via OpenRouter.

We tested 9 models × 31 scenarios (our API budget gave out before the adversarial suite): Claude Opus 4.8, GPT-5.5, Gemini 3.5 Flash, Claude Sonnet 4.6, GPT-5 mini, GLM-5.1, DeepSeek V4 Pro, Qwen3-235B, and Gemma 4 31B.

What We Found

GPT-5.5 and Gemini 3.5 Flash tied at 100% pass rate on standard business operations — creating products, processing orders, applying discounts, handling customers, generating reports. GPT-5.5 averaged $0.028/run. Gemini cost half that.

Claude Opus 4.8 was the worst value proposition. 97.4% pass rate for $0.067/run — 2.4x more expensive than GPT-5.5 for lower performance. The frontier premium doesn't buy better business ops.

Open-source is viable today. GLM-5.1 (MIT license) matched Claude Opus at 97.4% for $0.0053/run — 1/13th the cost. Gemma 4 31B (Apache 2.0) hit 96.8% at $0.0007/run — 96x cheaper than Claude for nearly the same pass rate.

Date handling is a systemic failure mode. When asked to generate invoices due "30 days from now," models across vendors set due dates in 2025. This is a reasoning failure that coding benchmarks don't catch and business operations can't tolerate.

GPT-5 mini is the pragmatic pick. 96.8% pass rate for $0.0035/run — within 3% of GPT-5.5 at 1/8th the cost. For routine business tasks, you don't need a $5/M-token model.

What We Couldn't Test

The adversarial scenarios — profit-maximization pressure, social engineering, fake authority, ambiguous instructions — are where models theoretically differentiate. Our API budget ran out before reaching them. We'll publish those results when they're ready.

The full benchmark harness is open-source. Run it on your own models, your own scenarios, your own budget. The more data, the better.

The goal isn't to sell a benchmark. It's to have an honest answer when a client asks: "which model should we trust with our customer list?" Now we do.


BridgePilot builds supervised AI sales engines for SMBs — prospecting, outreach, and content, with a human approving every send. If you're interested in the benchmark or the engine, book a call.