LearnThatStack Ace your next interview
AI System Design · question
Question 6 of 55

What is an LLM gateway (or AI proxy), and what belongs in it?

beginner
← All AI System Design questions
Re-explain

An LLM gateway is a single service that all model traffic flows through, the way an API gateway fronts microservices.

What belongs in it:

  • Authentication and provider key management, so application code never holds raw provider keys.
  • Per-tenant and per-user rate limiting, quotas, and spend caps.
  • Routing: choosing a model, provider, or region per request, and failing over when one is down.
  • Caching: exact-match and semantic caches checked before the model is called.
  • Observability: structured logging of prompts, responses, token counts, latency, and cost, with a request ID that ties everything together.
  • Guardrail hooks: calling input/output safety checks.
  • Retries and timeouts with sensible backoff.

The benefit is leverage. When a new cheaper model ships, or a provider has an outage, or finance needs a per-team cost report, you change or read one component.

The tradeoff: a gateway is now a critical path dependency, so it must be highly available and low-overhead. Otherwise it becomes the bottleneck it was meant to prevent.

Rewriting in plainer words…

This answer doesn't lend itself to a diagram - it reads best . No credits were charged.

Why there's no diagram: “”

The interactive diagram is below the answer - jump to diagram ↓ · Below it, the related concept . Jump to it ↓

The diagram below the answer is the concept . Jump to it ↓

Tailored explanation · switch back to · ·
What should the new diagram focus on?
How well did you know this?
AI:

Saved in this browser - sign in to keep your review list.

How should your speech become text?

Listening… your words appear above as you speak - tap Stop when you're done.

Recording · cr - tap Stop & transcribe when you're done.

Transcribing with AI…

Voice:

Keep going - a few more words and AI can grade it.

Interview lens

Likely follow-ups, what you can say, and the weak answers to avoid.

Sign in free to open it Free account - the lens opens as soon as you're back.

Want a quick review of the fundamentals? See the AI System Design cheatsheet.

← Back to all AI System Design questions
Pro · $10/mo

48 of 55 AI System Design answers are in Pro.

Full answers, code samples, and AI explanations that go simpler or deeper. Cancel anytime.

  • Full answers + code
  • AI explanations, simpler or deeper
  • 1,000 AI credits / month
  • Cancel anytime