The most expensive part of an AI agent is not the token. It is the wait. A new Mac-focused LLM server called oMLX is selling itself on exactly that number: cutting agent wait times from 90 seconds to 5 seconds, according to its Product Hunt listing. The pitch is not about raw throughput or benchmark scores. It is about the pause between a tool call and the next model response, the stretch where an agent stalls and a user stares at a spinner.

That 90-to-5 gap is the real story here. It is not a claim about a better model. It is a claim about the infrastructure around the model, and it points at a shift in where agentic AI actually runs.

The latency problem agents made worse

The agentic wave changed the shape of inference workloads. A chatbot generates one long response. An agent generates many short responses, each one punctuated by a tool call: search, code execution, API request, file read. Every turn introduces a round trip. The model finishes a completion, the agent hands control to a tool, the tool runs, and the model must be invoked again. That second invocation is where latency compounds.

Server-side agents feel this acutely. A model hosted in a distant data center adds network overhead to every turn. When an agent makes ten tool calls, the user experiences ten sequential waits. The 90-second figure in the oMLX listing is not a model inference time. It is the cumulative wall-clock time of a multi-step agent run, dominated by queuing, network hops, and cold starts on remote infrastructure.

oMLX takes the opposite path. It runs the model locally on Apple Silicon, using the Mac’s unified memory architecture to keep the weights resident. No network round trip. No queue. The model is already warm, already in memory, already one syscall away from generating the next token. That is how a 90-second multi-step agent run compresses to 5 seconds: the dominant cost stops being transport and starts being pure compute.

Apple Silicon became an inference platform

The oMLX pitch only works because of what Apple has built. The M-series chips put high-bandwidth unified memory on the same die as the GPU. A Mac Studio with 128GB or 192GB of unified memory can hold a 70B-parameter model in weights, quantized, with room to spare. That configuration was a workstation luxury three years ago. Now it is a viable inference server for a single user or a small team.

The MLX framework, Apple’s open-source array library for machine learning on its own silicon, is the software layer under this. oMLX is a server on top of MLX, exposing an API that agents can call. The name itself signals the lineage: oMLX, the “o” presumably for OpenAI-compatible, MLX for the underlying runtime. It is a small piece of the ecosystem, but it sits exactly where the economics of agentic AI are being renegotiated.

Local inference changes the cost structure. A remote API call bills per token, per request, per minute of compute. A local server bills once, at purchase, and then runs on electricity. For a developer iterating on an agent, the marginal cost of a thousand extra tool calls on a Mac is near zero. On a hosted API, that same thousand calls is a line item.

The 5-second claim deserves scrutiny

The 90-to-5 comparison is a marketing number, and it should be read as one. The Product Hunt listing does not specify the model size, the quantization level, the Mac model, or the agent framework used in the test. A 7B model on a top-end M4 Max will behave very differently from a 70B model on a base M3. The 90-second baseline is also ambiguous: it could include a cold start, a queue delay, or a slow remote model. Without a controlled benchmark, the number is directional, not definitive.

Still, the direction is credible. The mechanism is sound. Local inference removes the two biggest latency sources in agentic workloads: network round trips and shared-server queuing. Anyone who has run an agent against a busy hosted endpoint has felt the variance. A local server trades that variance for a fixed, predictable budget. The 5-second figure is plausible as a best case, and even a 15-second figure would be a meaningful improvement over 90.

The harder question is whether local inference scales beyond the single developer. A Mac is a personal device. It is not a multi-tenant GPU cluster. oMLX is aimed at the developer who wants fast iteration, not the enterprise that needs to serve thousands of concurrent agents. That is a real market, and it is growing, but it is not the market that OpenAI and Anthropic are fighting over.

What this means for AI builders

The oMLX pitch lands at a moment when the agent ecosystem is bifurcating. On one side, frontier labs push toward massive, hosted, multi-modal models with deep tool-use training. On the other side, a quieter movement is optimizing for the developer experience: small models, local runtimes, fast iteration, no network dependency. oMLX is firmly in the second camp.

For builders, the implication is practical. If you are iterating on an agent that makes many tool calls, the model choice matters less than the round-trip latency. A smaller local model that responds in 200 milliseconds per turn can beat a larger remote model that responds in 2 seconds per turn, especially when the agent needs ten turns to finish a task. The quality gap between a 7B and a 70B model is real, but it is not always the binding constraint. Latency is.

The other implication is economic. The token-based pricing model of hosted APIs assumes that inference is scarce and remote. Local inference breaks that assumption. A developer who runs oMLX on a Mac pays for hardware once and then treats inference as a free resource. That changes how agents get built: more tool calls, more retries, more exploration, because the marginal cost of each attempt is near zero. The behavior that emerges from cheap local inference is different from the behavior that emerges from metered remote calls.

The quiet case for local AI

The AI industry spent the last two years consolidating compute into massive data centers. The oMLX story is a reminder that a meaningful slice of AI work will stay local, not because local is more capable, but because local is faster and cheaper for the workloads that matter to individual developers.

The 90-to-5 number is the sales pitch. The durable insight is that agent latency is an infrastructure problem, not a model problem. oMLX does not claim a better model. It claims a better place to run the model. For a developer whose agent spends most of its time waiting, that is the more important improvement.

The Mac is not going to replace the GPU cluster. But for the developer sitting at a desk, watching an agent spin through tool calls, the difference between 90 seconds and 5 seconds is the difference between watching a process and being part of it. That is the gap oMLX is selling, and it is a gap worth taking seriously.