AI Got Expensive. Now What?

Cloud AI pricing changed fast in 2026. This post looks at why more teams are moving back to local models, the tradeoffs behind tools like Ollama and LM Studio, and why portability and ownership are becoming bigger concerns for developers.

AI Got Expensive. Now What?
Collection Capital and Labor (1907) / Mountain of Money

Cloud AI got expensive in 2026. Now everyone's looking at local again, which would be great, except the local ecosystem has its own problem that nobody's flagging.

For the last few years, the open-source local-AI conversation has largely focused on privacy. If you have healthcare data, are a defense contractor, or just a paranoid developer, you were likely running models locally. Everyone else just swiped a credit card, plugged into a cloud API or chatbot from OpenAI or Anthropic, and got down to work. Privacy was mostly a second thought, or a luxury at best. The cloud, and the sheer convenience of it, has been the default. 

As we hit the summer of 2026, the forcing function has fundamentally changed. Leading cloud AI providers are aggressively dismantling the illusion of cheap AI as they prepare for their respective IPOs. Users are slowly getting notices that they are being moved to aggressive, token-based billing, with astronomical multipliers for premier models.

I will admit, I use Claude Code everyday, whether for building out cookbooks for developer education or building integrations. But starting June 1, 2026, the economics are changing completely. Anyone on a Copilot Pro or Pro+ plan who doesn't migrate off request-based billing will watch their multipliers jump: Claude Opus going from 3x to 27x, Sonnet from 1x to 9x, GPT-5.4 mini from a 0.33x discount to a 6x markup. The previously-free GPT-4o tier is no longer free. A serious PR review session on a flagship model suddenly turns into a budgeting conversation.

Most "local AI" tools are managed services wearing a hoodie

If you are migrating to local AI to escape these volatile cloud token taxes, you need to understand the architectural compromises of the tools you are picking.

  • LM Studio: A polished visual model browser with deep Hugging Face integration, and performs incredibly well by leveraging native MLX optimization on Apple hardware. LM Studio itself is closed source. You're trading a cloud vendor for a desktop vendor.
  • Ollama: Open-source at the core. However, Ollama acts like a local system daemon which pulls from a centralized registry using a non-standard manifest system, turning standard GGUF files into tool-specific "blobs." If you came to local AI to escape lock-in, that pattern should look familiar.

I don't think either team set out to recreate cloud lock-in. But that's what they've shipped: a vendor-controlled distribution channel, a background service you have to manage, and weights stored in a format only one tool understands.

If the reason you went local was sovereignty, you didn't get sovereignty. You got a sandbox with a nicer UI.

What I actually want from local AI

Full disclosure: I'm the founding DevRel engineer at Mozilla.ai, and I work on llamafile. I have a stake in this. Read with that in mind.

I want “simple”. The model should just be a file. Not a model in a registry, not a blob in a daemon's cache. Just a file. I want to download it, run it, archive it, email it, drop it on a USB stick. I want zero install, zero background services and to be able to delete it by moving it to the trash.

llamafile does exactly this. It collapses the entire local AI stack, the model weights, the inference engine (llama.cpp), and the runtime environment, into a single, multi-platform executable binary file. 

llamafile isn't a universal replacement. Binaries are large because the runtime ships with the weights every time. Model-swapping is clunkier than ollama pull, and on Apple Silicon, MLX-optimized stacks will beat us on tokens per second for the same model. If you want a polished chat UI and a model browser, Ollama or LM Studio will be more fun. llamafile is for the case where the AI needs to be portable, vendor-free, and actually yours.

The Verdict: Why Compromise on Sovereignty?

The 9x and 27x jumps in Copilot's flagship multipliers are a wake-up call. The era of cheap cloud AI is over, and computing locally is no longer just an ideological stance for data privacy, it is an operational requirement for budget-conscious development teams.

As you look to build your new local open-source stack, choose your foundation carefully. Don't let the fear of a "hard restart" trick you into adopting a managed local service that sits between you and your open-source models.

If you want to casually tinker with a chat interface, closed GUIs or daemon wrappers will do fine. But if you want to build resilient, cost-effective pipelines that you completely control, your AI needs to be as permanent and portable as a text document.

AI got expensive. Going local is the easy answer. Going local in a way that can't be taken back is the one that matters. The model is a file, or it isn't really yours.