Home agents aren't starved for tokens, they're stuck in the queue
Local inference has a bottleneck that nobody talks about, and it isn't tokens per second. It's one GPU. Run an agent that spawns subagents and suddenly five "parallel" workloads are all queued behind the same card, doing something very close to nothing while they wait for their turn. Nvidia's answer, announced at IFA 2026, is a free, open-source beta called PAIR (Personal AI Router) for Windows, Linux, and macOS. The name is misleading on purpose: it is not a hardware router. It's software that discovers compatible machines on your LAN (mDNS), pairs them with a six-digit code, and encrypts the channel with mTLS. Compatible means RTX 20-series and newer, RTX PRO, DGX Spark, and — worth repeating because it matters — Apple M4 and newer. The subtle-but-important part: PAIR doesn't teach your agents a new API. It proxies the Ollama and LM Studio endpoints you already run, and each model still runs entirely on one machine. It's workload distribution, not compute pooling. Your agents don't get a bigger brain; they stop stepping on each other.
Why the bet makes sense is in Nvidia's own numbers, which come with the usual vendor asterisks: more than half of US homes have two or more PCs, and they sit idle most of the day, with average utilization around 17% per day. In the demo household — RTX Spark laptop, DGX Spark desktop, RTX 5090 laptop, a gaming PC, and a MacBook Pro — Nvidia's Seth Schneider estimated about 165 teraflops of underused compute and called it a "treasure trove of free tokens." The routing is load-aware: a node that's mid-game gets skipped, nodes can drop in and out as they sleep or die, and prompts and traffic stay on your LAN. The realistic setup Nvidia envisions, asked flatly, is one laptop plus one gaming PC. That's an honest read. And the honest limit: PAIR cannot run a model that doesn't fit on one card. It solves the queueing problem, which is real; it does not solve the FLOPs problem, which is also real.

The reason this lands on this blog is that the last mile of self-hosted AI has always been plumbing, and PAIR is plumbing. Agentic workloads are embarrassingly parallel, and the missing piece has never been the model — it's the router between "my agent wants inference now" and "which of my idle machines actually has a free GPU." Building on Ollama instead of a proprietary cluster API means you can try it today without rewiring anything, and the trust model (six-digit pairing, mTLS, LAN-only) is exactly the trust model of a smart-home devi

Sources
- Nvidia launches free tool that links idle computers into a personal AI data center — The Verge
- NVIDIA PAIR turns your idle home PCs into a local AI cluster — WCCFtech
- NVIDIA's PAIR lets you use idle PCs for AI computing tasks — Engadget
- Personal AI Router for Local Inference (official product page) — NVIDIA
Comments
Post a Comment