The Agentic Inflection Point
AI infrastructure is undergoing its most significant transformation since the GPT-4 launch. What began as a race to train larger models has shifted to a battle for inference efficiency, agent orchestration, and enterprise deployment. In May 2026, three converging trends are reshaping the stack: specialized hardware for agentic workloads, inference engines rebuilt for reinforcement learning and continuous batching, and enterprise deployment pipelines that bring AI agents closer to governed data.
The numbers tell the story. Stripe’s agents generate over 1,300 pull requests per week. Ramp attributes 30% of merged PRs to coding agents. Spotify reports 650+ agent-generated PRs monthly. These aren’t experiments—they are production workloads running on inference infrastructure that was never designed for agentic patterns.
NVIDIA Vera Rubin: Hardware Built for Agentic Scale
NVIDIA’s Vera Rubin platform, unveiled at GTC 2026, represents the first architecture designed specifically for the non-deterministic trajectories of agentic AI. Unlike traditional inference workloads with predictable batch sizes, agentic systems introduce multi-turn conversations, tool calls, and KV cache pressure that compound latency across hundreds of requests per session.
Groq 3 LPX and Deterministic Scale-Up
The NVIDIA Groq 3 LPX, paired with Vera Rubin NVL72, addresses what NVIDIA calls the “scale-up problem” for agentic inference. Each LPU exposes 96 chip-to-chip links at 112 Gbps, delivering roughly 2.5 TB/s of scale-up bandwidth per LPU and 640 TB/s at the rack level. The key innovation is compiler-scheduled data movement: the LPU compiler plans every transfer in advance, treating thousands of interconnected LPUs as a single scheduled execution surface rather than a network of independent chips.
For agentic workloads, this means frontier MoE models can run at low latency without sacrificing context window size. The platform achieves up to 3,600 PFLOPS of NVFP4 compute per rack, with 20.7 TB of HBM4 and 1.6 PB/s of memory bandwidth. When combined with NVIDIA Dynamo’s heterogeneous decode loop, the system routes prefill and attention work to Vera Rubin GPUs while accelerating FFN decode on Groq 3 LPX.
Nemotron 3 Nano Omni: Multimodal Intelligence for Real-World Documents
Released in late April 2026, NVIDIA Nemotron 3 Nano Omni extends the Nemotron multimodal line from vision-language to a broader text-image-video-audio model. Built on a hybrid Mamba-Transformer-MoE backbone with 23 Mamba layers and 23 MoE layers with 128 experts, the model delivers best-in-class accuracy on document intelligence leaderboards while adding native audio understanding.
The architecture includes several key innovations for enterprise workloads:
- Dynamic resolution processing handles 1,024 to 13,312 visual patches per image, critical for OCR-heavy documents and financial tables
- Conv3D temporal compression fuses consecutive video frames into “tubelets,” halving vision tokens
- Efficient Video Sampling (EVS) drops redundant video tokens after the vision encoder, reducing latency while maintaining accuracy
- Parakeet-TDT-0.6B-v2 audio encoder enables high-quality transcription across diverse audio conditions
Benchmark results show Nemotron 3 Nano Omni achieving 65.8 on OCRBenchV2-En, 57.5 on MMLongBench-Doc, and 89.4 on VoiceBench. Perhaps most impressive for infrastructure teams, the model delivers up to 9x higher throughput and 2.9x single-stream reasoning speed compared to alternatives—making it one of the most cost-efficient open video understanding models on MediaPerf.
Inference Engines: The vLLM V1 Migration and Async Batching
Correctness Before Corrections
The migration from vLLM V0 to V1 has been a critical infrastructure challenge for teams running online reinforcement learning. ServiceNow’s PipelineRL team documented their journey in a detailed Hugging Face blog post, revealing four key fixes needed to maintain training parity: processed rollout logprobs, V1-specific runtime defaults, inflight weight updates, and fp32 lm_head for final projection.
The core issue was semantic: vLLM V1 returns logprobs from raw model outputs by default, before logits post-processing. For RL systems that consume token logprobs directly, this created a train-inference mismatch visible in clip rate, KL divergence, entropy, and reward curves. The fix—setting logprobs-mode=processed_logprobs—removed the mean bias, but final parity still required matching the fp32 lm_head path used by the trainer.
Asynchronous Continuous Batching
Separately, Hugging Face engineers detailed how to unlock asynchronicity in continuous batching, achieving up to 24% throughput improvement without any model changes. The insight is simple but powerful: in synchronous batching, the CPU and GPU take turns, with the GPU idle while the CPU prepares the next batch. Using CUDA streams to decouple CPU batch preparation from GPU compute allows both to run in parallel.
Profiling an 8B model generating 8K tokens with batch size 32 showed 24% of total generation time spent with an idle GPU. By using three dedicated CUDA streams—one for compute, one for CPU-to-GPU transfers, and one for GPU-to-CPU transfers—teams can recover this overhead entirely. The technique has been implemented in the transformers library and represents a zero-cost optimization for inference deployments.
Enterprise Deployment: Codex Goes On-Premises
OpenAI’s Codex has emerged as one of the fastest-growing enterprise AI products, with over 4 million developers using it weekly. In mid-May 2026, OpenAI and Dell Technologies announced a partnership to bring Codex to hybrid and on-premises enterprise environments through the Dell AI Data Platform and Dell AI Factory.
The collaboration addresses a critical enterprise requirement: deploying AI agents where governed data already lives. Codex will connect with Dell’s data platform to access codebases, documentation, business systems, and operational knowledge without requiring data migration to cloud environments. For security-conscious organizations, this represents a practical path to agent deployment with the controls large organizations require.
Simultaneously, OpenAI engineers detailed their custom Windows sandbox implementation for Codex, addressing the platform’s lack of native isolation primitives. After evaluating AppContainer, Windows Sandbox, and Mandatory Integrity Control as non-starters, the team built a custom solution using synthetic SIDs and write-restricted tokens—enabling file-write constraints and network restrictions without requiring administrator elevation.
Ollama 0.24: Local AI Infrastructure Evolves
Ollama’s 0.24 release in mid-May brings significant local infrastructure improvements, including native support for the Codex App with built-in browser integration, review mode, and worktree support. The release also reworks the MLX sampler for improved generation quality on Apple Silicon and adds vision model support for the ollama launch opencode command.
Notably, Ollama 0.30 is now in pre-release with a major architectural change: direct llama.cpp support instead of building on top of GGML, with GGUF file format compatibility. The pre-release uses MLX for Apple Silicon acceleration and represents a significant evolution in local inference infrastructure.
NVIDIA Dynamo: The Agent-Native Orchestration Layer
NVIDIA’s Dynamo framework is being rebuilt specifically for agentic inference patterns. The system introduces three key layers:
- Frontend API supporting v1/responses and v1/messages protocols with typed content blocks, plus “agent hints” that allow harnesses to attach structured metadata for scheduling and caching decisions
- KV-Aware Router maintaining a global index of cache blocks across workers, achieving 170M ops/s for planetary-scale KV routing with per-worker overlap scoring
- Cache Retention with TTL-based eviction policies matching Anthropic’s prompt caching API, protecting computed prefixes during tool-call gaps
The agent hints extension is particularly notable—it bridges the gap between agent harnesses (which have global context about blocked agents, session length, and tool-call patterns) and the inference infrastructure (which traditionally sees only anonymous tokenized requests). Signals like osl (output sequence length estimates), priority, and speculative_prefill enable the orchestrator to warm caches and optimize scheduling before requests are fully formed.
Attention-FFN Disaggregation
Dynamo’s most sophisticated optimization is Attention-FFN Disaggregation (AFD), which splits the two dominant phases of transformer inference across different hardware. In this architecture, Vera Rubin GPUs handle decode attention over accumulated KV cache—work that is memory-bandwidth-bound and benefits from HBM4’s 1.6 PB/s throughput. Meanwhile, Groq 3 LPX accelerators execute the feed-forward network (FFN) layers, which are compute-bound and benefit from the LPX’s deterministic, low-latency execution.
Intermediate activations are exchanged each token through low-overhead, KV-aware transfers. This division works because the two phases have fundamentally different hardware requirements: attention needs massive memory bandwidth for KV cache reads, while FFN needs deterministic low-latency matrix multiplication. By matching each phase to its ideal hardware, Dynamo avoids the compromise of running both on the same substrate.
Mistral Medium 3.5 and the Rise of Coding Agents
While NVIDIA focuses on infrastructure, Mistral AI has been advancing the model layer with Medium 3.5, announced in late April 2026. The release introduces remote coding agents in Vibe—Mistral’s developer tool—and a new “Work mode” in Le Chat for complex multi-step tasks. These capabilities extend beyond simple code completion into autonomous workflow execution, where agents can plan, execute, and iterate on software engineering tasks with minimal human intervention.
The significance for infrastructure teams is that these more capable agents generate longer, more complex inference traces. Where a simple code completion might require a single 512-token generation, an autonomous coding agent might chain together dozens of tool calls across minutes or hours of execution. This places sustained pressure on KV cache retention, router state, and worker affinity—precisely the problems that Dynamo’s agent hints and cache retention policies are designed to solve.
Cohere Command A+: Enterprise-Grade Open Models
Cohere’s Command A+ release represents another vector of infrastructure pressure. Positioned as the company’s “fastest, most powerful language model yet” and available open-source, Command A+ targets enterprise deployments that require both performance and deployment flexibility. Open-source release means organizations can self-host, fine-tune, and integrate the model into private infrastructure—avoiding API latency, rate limits, and data sovereignty concerns.
For infrastructure teams, the proliferation of high-quality open models from Cohere, Mistral, NVIDIA, and others means the model layer is becoming a commodity. The competitive differentiation is shifting to how efficiently teams can serve these models at scale, route traffic between them, and integrate them into agentic workflows. This is why the inference engine and orchestration layers—vLLM, Dynamo, Ollama—are receiving the most engineering investment in 2026.
What This Means for Infrastructure Teams
The convergence of these developments points to several shifts in how teams should think about AI infrastructure:
- Specialized hardware is becoming necessary, not optional, for agentic workloads at scale. The Vera Rubin platform and Groq 3 LPX demonstrate that general-purpose GPU clusters are insufficient for the latency and determinism requirements of multi-agent systems.
- Inference engines must be correctness-first for RL and online training. The vLLM V0-to-V1 migration shows that semantic mismatches in logprob computation can derail training dynamics in subtle but significant ways.
- Enterprise deployment patterns are maturing. The OpenAI-Dell partnership and Codex’s Windows sandbox show that agent infrastructure is being built for real enterprise constraints: hybrid environments, governance requirements, and security boundaries.
- Local inference is becoming competitive. Ollama’s architectural evolution and MLX improvements on Apple Silicon suggest that local deployment will be viable for an expanding set of use cases.
- Orchestration layers need agent-awareness. Generic round-robin routing is inadequate for agentic patterns. Systems like Dynamo demonstrate that the boundary between agent harness and inference infrastructure is blurring.
- Multimodal is the new default. Nemotron 3 Nano Omni’s document-audio-video capabilities show that text-only inference is becoming a niche case. Infrastructure must handle variable token budgets across modalities.
- Open models create deployment complexity. With Command A+, Nemotron, and Mistral all available as open weights, teams need sophisticated model routing, A/B testing, and fallback strategies.
Looking Ahead
The AI infrastructure landscape in mid-2026 is defined by a single truth: the workloads have outgrown the infrastructure. Agentic AI—with its non-deterministic trajectories, sustained KV cache pressure, and multi-turn dependencies—exposes every inefficiency in traditional serving stacks. The teams that thrive will be those that invest in specialized hardware, correctness-first inference engines, and agent-native orchestration layers.
Within six months, we expect to see broader adoption of heterogeneous compute (GPU + LPU) for production agent deployments, widespread async batching in open-source inference engines, and standardized agent hint protocols across harnesses. The enterprises that start building this infrastructure now—rather than retrofitting when agents become business-critical—will have a sustainable advantage.
Sources
- NVIDIA Vera Rubin Platform: Solving Agentic AI’s Scale-Up Problem
- Full-Stack Optimizations for Agentic Inference with NVIDIA Dynamo
- NVIDIA Nemotron 3 Nano Omni
- vLLM V0 to V1: Correctness Before Corrections in RL
- Unlocking Asynchronicity in Continuous Batching
- OpenAI and Dell Technologies Partnership
- Building a Safe, Effective Sandbox to Enable Codex on Windows
- Ollama Releases
