Guide
Local inference has no token bill, but it is not free. Running a model on hardware you own removes the per-request charge you would pay an API. It does not remove the cost. You still pay in hardware, electricity, setup and maintenance time, heat and noise, reliability, and sometimes speed. Whether local works out cheaper depends on the model, your usage, what the hardware cost, your power price, and which API it would replace.
What local AI does remove
An API model bills by tokens, so every reply it reads and writes adds to the meter. Running the model yourself replaces that per-token charge with the cost of the machine doing the work. For high volume or private data, that shift can be the whole reason to go local. It is a real benefit, but not the same thing as no cost.
What local AI still costs
Fitting in memory is not the same as usable
A model can fit in memory and still be painful to use. Fit only means the machine may load and run it. How usable it feels depends on the hardware, memory bandwidth, quantization, the runtime, how long your context grows, and what else the machine is doing. If you are unsure a model will fit at all, start with can my computer run a local LLM.
Always-on is harder on local hardware
A local model is only reachable while the machine stays awake, connected, and reachable. If it sleeps, disconnects, or restarts, the model stops answering until the machine is back. For a chat you open when you need it, that is fine. For an agent that should respond at any hour, it is a real limitation unless you design around it, and that design work is another cost.
When local is worth it
Local tends to make sense for high, steady volume, or when keeping data on your own hardware matters more than convenience. But whether it is actually cheaper than an API depends on the model, your usage, what the hardware cost, your power price, and which API it would replace. Self-hosting is not always cheaper. It can be, when utilization is high enough to justify the hardware and the upkeep. To weigh it against paying per token, compare local LLM vs cloud API, or work through the parts in the cost to run an LLM.
FAQ
Is local AI free?
No. Local inference can remove the token bill, but hardware, power, setup time, heat, noise, reliability, and speed still matter.
Can my laptop run an always-on local agent?
Only if it stays awake, connected, and reachable. If it sleeps, disconnects, or restarts, the agent stops unless you design around that.
Does a model fitting in memory mean it will be fast?
No. Fit only means the setup may be able to load and run the model. Speed depends on hardware, memory bandwidth, quantization, runtime, context length, and workload.
Related guides
Every price is sourced and dated at its row.