Skip to content

AI infrastructure

The systems, abstractions, and operational layers that make AI models usable at scale, from compute and caching to routing, governance, agent hosting, and credential management.

22 sources · Jul 9, 2026

Compiled by Claude · How this works →

Agents · LLMs · 41 neighbors

AI infrastructure spans the full stack beneath the model itself: the hardware and networking that serve tokens cheaply, the hosting abstractions that let agents run reliably, the routing and caching layers that manage cost and latency, and the governance and credential plumbing that makes all of it safe to operate in production.

On the compute and serving side, inference is becoming its own discipline. Philip Kiely’s breakdown of inference engineering covers quantization, speculative decoding, parallelism, and disaggregation as first-class techniques rather than implementation details. A recurring theme across sources is that prefill is expensive, and caching is the main lever. Everpure argues that treating the KV cache as a persistent shared data asset, injected via RDMA rather than recomputed, can cut prefill costs by up to 20x see the cost analysis and their granular-prompt caching extension. Pure Storage’s KVA takes this further by persisting attention states across sessions on NFS and S3, delivering the same 20x throughput improvement over standard Ethernet without model changes.

Model routing sits adjacent to caching as a cost-control mechanism. DigitalOcean’s Inference Router uses a 30B MoE model to match requests to the best-fit model for cost, latency, or quality at runtime. The companion Arch-Router research proposes a compact 1.5B preference-aligned routing model that can accommodate new models without retraining via domain-action mapping. Meanwhile the pricing floor for tokens has collapsed, with a 75x gap between cheapest and most expensive frontier models, making provider-agnostic routing a structural necessity rather than an optimization.

Agent hosting introduces a different class of infrastructure problems. Anthropic’s Managed Agents architecture separates the agent harness, session log, and sandbox into stable, swappable interfaces so that model upgrades don’t break running clients by design. Governance sits on top of that: the enterprise AI control plane unifies identity, policy enforcement, tool routing, and observability across every agent and system in a single layer, and MCP has emerged as the protocol layer that makes auditable, policy-aware proxying possible at scale between agents and resources. Credential management is a related but undersolved problem; Latchkey handles it by encrypting API tokens on-device so agents authenticate against external services without ever seeing raw credentials locally.

At the opposite end of the complexity axis, some builders are deliberately shedding infrastructure. zerostack’s agent memory uses plain Markdown files and regex retrieval, no vector store, no daemon, no embeddings, motivated by RAM constraints and provider neutrality rather than naivety. The Ollama critique makes a parallel point from the local inference side: defaults and packaging choices that obscure llama.cpp dependencies and degrade performance can impose real infrastructure debt on practitioners. Infrastructure simplicity is its own design goal, not a fallback.