惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
博客园 - 司徒正美
Last Week in AI
Last Week in AI
爱范儿
爱范儿
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
量子位
V
V2EX
博客园 - 叶小钗
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Stop Measuring Agent Infrastructure by Gateway Latency Alone
Paul Twist · 2026-06-19 · via DEV Community

I've been watching the LLM gateway benchmarks get faster. Bifrost at 11 microseconds, Helicone at 8 milliseconds, LiteLLM at 8ms. On single requests, the math is brutal: Bifrost is 720x faster than LiteLLM.

But this week I watched three teams benchmark gateways, pick based on latency, deploy to production, and then realize they'd solved the wrong problem.

The issue isn't the benchmarks. The issue is what they're benchmarking. And what they're not.

The Latency Benchmark Measures a Chat Interface

Here's what a typical gateway latency benchmark does:

  1. Send a single LLM request (chat completion, embedding call, etc.)
  2. Measure the overhead the gateway adds
  3. Report the percentile latency and throughput

This makes sense if your application is a chat interface. One user sends one message. Low latency feels good. You route that call through a gateway and add 11 microseconds? Invisible. Phenomenal.

But agent systems don't work like chat interfaces.

Agent Calls Are Sequential, Not Parallel

A production agent making a decision typically isn't making one LLM call. It's making many:

  • Planning: "What tools do I need?" (1 call)
  • Execution: "Use tool X with these args" (1 call per tool)
  • Validation: "Does the output make sense?" (1 call)
  • Refinement: "Did that work?" (1 call)
  • Reporting: "Summarize what happened" (1 call)

That's 5–15 calls per decision. Some agents do 50+.

If each call goes through your gateway, the latency compounds:

  • Bifrost at 11µs per call, 10 calls = 110µs
  • Helicone at 8ms per call, 10 calls = 80ms
  • LiteLLM at 8ms per call, 10 calls = 80ms

The relative difference shrinks. But—and this is the part the benchmarks hide—in production, agents don't run in isolation.

Multiple agents run concurrently. Tool calls can block. Fallbacks trigger retries. Cost attribution happens per request. Session state needs to persist across crashes.

The gateway overhead is one component of agent latency. It's not the only component, and it's usually not the largest.

What Production Teams Actually Evaluate

I talked to five teams this month running coding agents in production. Here's what they actually cared about, ranked by impact:

1. Session Persistence
"If our agent crashes mid-task, we lose everything. The benchmark didn't mention session state at all." They needed agents to survive pod restarts, maintain tool call history, and resume from where they left off.

2. Cost Attribution
"Our CFO asked what each agent decision costs. The gateway's latency benchmark didn't tell us that." They needed to tag requests by agent, workflow, team, and user—then roll up costs per agent and per decision. Latency benchmarks measure throughput, not cost per decision.

3. Model Routing
"We use Claude for complex tasks, GPT-4 for speed, and open-source for cheap calls. The fastest gateway doesn't route on task complexity." They needed conditional routing: "If this agent is handling a finance decision, use Claude. If it's a simple lookup, use a cheaper model." Bifrost at 11µs overhead doesn't matter if it can't route based on decision type.

4. Fallback & Retry Policy
"Our tool sometimes fails. We need to know how many retries happened and why, not just how many total requests went through." They needed to instrument retry loops and prevent cost spirals. A gateway that handles 10,000 RPS but logs every retry identically isn't helping.

5. Sandbox Isolation
"Each agent gets its own session. Tools run in isolated sandboxes. The gateway latency benchmark doesn't mention sandboxes at all." They needed agents to run in per-team, per-workflow sandboxes with resource limits and audit trails.

6. Observability & Debugging
"When an agent makes a bad decision, we need to replay it. We need to see every tool call, every model invocation, every decision point." They needed structured tracing, not just latency metrics.

The gateway latency benchmark measures exactly zero of these.

Where the Latency Argument Breaks Down

Let's do the math on a real workflow:

An agent processes a customer support ticket. It:

  • Calls the LLM to classify the issue (1 call)
  • Looks up the customer record (tool call, ~200ms on database)
  • Calls the LLM to draft a response (1 call)
  • Checks sentiment (embedded call or tool, ~50ms)
  • Routes to a human if confidence is low (1 call)

Total latency: ~400–600ms

Gateway overhead in this flow:

  • Bifrost: 11µs × 4 LLM calls = 44µs
  • LiteLLM: 8ms × 4 LLM calls = 32ms

So Bifrost saves 31ms on a 500ms workflow. That's 6%. Important? Sure. But not more important than cost governance, session persistence, and model routing.

And LiteLLM at 8ms overhead is already dwarfed by the actual workflow latency.

The Real Question: Control Plane vs. Data Plane

The benchmark conversation assumes you need one gateway for everything. But production agent infrastructure needs two layers:

Data plane (where gateway latency matters):

  • Fast request routing to model providers
  • Fallback and retry logic
  • Cost tracking at request level
  • Minimal overhead

This is where Bifrost shines. Go's concurrency model is genuinely suited for high-throughput, low-latency routing. 11µs overhead is real and measurable.

Control plane (where gateway latency doesn't matter):

  • Session persistence across restarts
  • Per-agent and per-team sandboxes
  • Workflow scheduling and memory management
  • Cost attribution to agents and workflows
  • Access control and audit trails
  • Tool binding and validation

This is where data plane latency is irrelevant. A control plane call that takes 200ms is acceptable if it's handling session state, sandbox provisioning, or workflow routing. You're not making 5,000 of them per second. You're making a few per agent lifecycle.

This is also where LiteLLM Agent Platform operates. It's not trying to be a low-latency gateway. It's trying to be a reliable control plane that actually makes agents runnable in production.

How to Evaluate Agent Infrastructure

Here's a framework teams should actually use:

  1. Can it run agents across pod restarts without losing state? (Session persistence)
  2. Can it isolate agents per team and per workflow? (Multi-tenancy)
  3. Can you measure cost per agent and per decision? (Cost attribution)
  4. Can you route based on task type or agent type, not just latency? (Intelligent routing)
  5. Can you see why an agent made a decision? (Observability)
  6. Can you set per-agent cost budgets and enforce them? (Cost governance)
  7. Can you schedule recurring agent work? (Orchestration)
  8. Can you connect tools, MCPs, skills, and custom rules? (Extensibility)
  9. How fast is the gateway? (Data plane performance)

Most teams ask #9 first. They should ask it last.

The Architecture That Actually Works

A production agent system needs both:

  • Fast data plane: Bifrost or LiteLLM-Rust or Helicone for routing, retries, and cost tracking at request level
  • Reliable control plane: LiteLLM Agent Platform or similar for sessions, isolation, scheduling, and governance

The latency benchmark tells you about the data plane. It tells you nothing about the control plane.

Teams that pick based solely on data plane latency end up with a fast gateway that can't handle agent sessions, costs, or multi-tenancy. They solve the wrong problem and build the wrong system.

What This Means for Your Architecture

If you're evaluating agent infrastructure:

  1. Separate the layers. Don't try to measure everything in one benchmark. Measure data plane latency separately from control plane reliability and feature depth.

  2. Measure the right things. Ask vendors: How do you handle session persistence? Cost attribution? Multi-tenancy? Sandbox isolation? Observability? These matter more than the 11µs vs 8ms difference.

  3. Test the full workflow. Don't benchmark a single LLM call. Benchmark a complete agent decision with tool calls, retries, and cost tracking. That's closer to production reality.

  4. Separate costs. Data plane should be fast and cheap (commodity hardware). Control plane should be reliable and governable (probably more expensive per request, but fewer requests).

The teams building agents at scale are not chasing 11-microsecond gateway overhead. They're building systems where sessions survive crashes, costs are predictable, and agents can actually be governed in production.

That's a different set of problems. And latency benchmarks don't measure it.


Paul Twist is an AI engineer based in Berlin. He works on production infrastructure for agents and writes about the gap between what works in demos and what works at scale.