Original briefings. Zero spin.
Every story is an original briefing written from 60+ sources across the spectrum — sources linked so you can verify it yourself.
The AI Gateway Question: Who Controls the Traffic Between Your Apps and the Models?

Over the past two years, most large organizations stopped asking whether to use large language models and started asking how to use many of them safely. A single application may now call OpenAI for one task, Anthropic for another, and a self-hosted open model for a third. Each provider has its own API, its own pricing, its own outage windows, and its own data-handling terms. Multiply that across dozens of internal apps and hundreds of developers, and the result is a governance problem, not just an engineering one.
A category of software has grown up to answer it. Depending on who you ask, it is called an "AI gateway," an "LLM router," or an "LLM proxy." The idea is simple: put one control point in front of every model provider, so that routing, cost, access, and audit are handled in one place instead of scattered across application code.
What an AI gateway actually is
An AI gateway sits between an organization's applications and the model providers they call. Applications talk to the gateway using a single, standard interface — most commonly the OpenAI-compatible API — and the gateway forwards each request to whichever provider and model is appropriate. Because the interface is standardized, developers can switch or combine providers by changing configuration rather than rewriting code.
Across the tools in this category, a common feature set has emerged:
- Routing and fallback. Requests are directed to a chosen model, and can automatically fail over to an alternate provider or model when one is slow, rate-limited, or down. This reduces single-vendor dependency.
- Cost tracking. Every request is priced by provider, model, and token usage, giving finance and engineering a shared, real-time view of spend rather than a surprise invoice at month's end.
- Access control and quotas. Teams, projects, or users get their own keys, budgets, and rate limits, so one runaway job cannot exhaust an organization's capacity or budget.
- Observability. Each request, response, and trace is logged for debugging, performance analysis, and incident review — often exported through open standards such as OpenTelemetry.
- Policy and guardrails. A central place to enforce rules: block certain content, redact sensitive fields, or constrain which providers may see which data.
Why the category is emerging now
Three forces are pushing AI gateways from a nice-to-have to a default layer of the stack.
The first is provider sprawl. The frontier-model market is no longer a single dominant vendor but a shifting field of OpenAI, Anthropic, Google, and a growing roster of capable open-weight models. Teams increasingly want to mix and match — routing cheaper or faster models to simple tasks and reserving premium models for hard ones — and they do not want that logic hard-coded into every application.
The second is cost. As LLM usage moves from pilots into production, token spend becomes a real line item, and it tends to arrive as an opaque monthly bill split across teams. A gateway turns that into per-request, per-team accounting that finance can actually manage.
The third is governance. Regulated industries, critical infrastructure, and government programs increasingly need to prove — not just assert — who sent what to which provider, and under what rules. Compliance regimes, controlled-data handling, and incident investigations all demand a defensible record of AI activity. A single provider outage also cannot be allowed to take an operational workflow down, which makes cross-provider routing and fallback a resilience requirement rather than a convenience.
Who is building in this space
The category is real, competitive, and growing, spanning open-source projects and commercial platforms.
On the open-source side, LiteLLM has become a widely used proxy for reaching many providers behind one OpenAI-compatible interface, and Portkey open-sourced its gateway in early 2026. OpenRouter offers a hosted routing service across dozens of models. On the commercial and hybrid side, Kong extended its established API-management platform with an AI Gateway, and the major cloud providers have added their own model-routing and gateway features. A newer, national-security-focused entrant is 10xNatSec's open-source Nexus project, which positions itself around policy enforcement and auditability for regulated and mission environments. Each takes a somewhat different stance on where to sit in the stack and how much governance to build in, but all share the same core premise: consolidate model traffic behind one inspectable control point.
What to look for when evaluating one
Because the tools converge on a similar feature list, the meaningful differences tend to show up under load and under scrutiny. A few questions separate infrastructure an organization can rely on from a convenient proxy:
- Does it fail safely? When a policy cannot be enforced — a redaction that cannot be applied, a provider that cannot be reached — does the gateway deny the request or quietly pass it through?
- Can the audit trail withstand an investigation? Logging is easy; producing a record that holds up when someone asks "prove what happened" is harder.
- How much operational weight does it add? Every gateway introduces its own data plane — databases, queues, caches — that a team then has to run and secure.
- Does it reduce lock-in, or just relocate it? The point of a router is provider independence; some tools quietly become a new dependency of their own.
For consumer apps, an AI gateway is mostly a convenience and a cost-control tool. For regulated industries and mission environments, the same layer is increasingly where compliance and resilience are actually enforced — which is why the category has drawn entrants from both the developer-tools world and the security world.
The bottom line
As AI moves from demos into governed, everyday operations, the control point between applications and models becomes strategic. Open-source AI gateways make that layer inspectable rather than proprietary — a meaningful property for anyone who has to prove, not just assert, how their AI systems behave. The category is young, the entrants are still differentiating, and the right choice depends less on the feature checklist than on how a given tool behaves when a policy fails or an auditor calls.
Learn more about the sponsor's open-source project: Nexus is available under the Apache 2.0 license at gitlab.com/vortexaq/nexus.
Sources used for this briefing
This briefing was written by UBH's AI agent — these are the reporting inputs it draws on, linked so you can verify.