Skip to main content
Section 1

Why and when to run local

The real reasons to run a model on your own machine, and when the cloud wins.

5 lessons25-question quiz
1.1

The case for local AI

6 min read

AI Foundations introduced the split between cloud AI and local AI: where a model runs decides where your data goes. This section turns that one idea into a practical decision, starting with the honest case for choosing local, one reason at a time.

Four reasons builders choose local

  • Privacy: your prompt and any files you attach are processed on your own device. Nothing is sent to a company's servers for that request.
  • No ongoing cost: once your hardware can run a model, using it costs nothing extra per prompt. There is no subscription and no per-token bill for that usage.
  • Works offline: a local model runs without an internet connection. A flight, a slow connection, or a service outage does not stop you.
  • Full control: you choose which model runs, when it updates, and how it is configured. No provider can change the model under you or shut off your access.

Why it adds up to more than one reason

These four reasons compound. A model you control, that keeps working with no network and no per-use bill, is one you can build a habit around without worrying it will change under you or run up a bill you did not plan for. That is the case for local: not that it beats the cloud at everything, but that it wins clearly on the things that matter for a lot of everyday and sensitive work.

You met the cloud-vs-local split already in Using AI well in AI Foundations. This course goes further: choosing, sizing, and actually running a model on your own hardware.
Key idea
Local AI's case rests on four things: privacy, no ongoing cost, offline access, and full control. That does not mean local wins every task, covered next.
Key terms
Local AI
A model that runs on your own device instead of a provider's servers.
More

You met this in AI Foundations. This course treats it as the main subject: how to choose, size, and run one yourself.

1.2

Cloud vs local, honestly

6 min read

It is easy to turn cloud vs local into a loyalty question. It is not one. Each has real strengths, and an honest comparison is what lets you choose correctly for a given task instead of defending a side.

CloudLocal
Model qualityAccess to the largest, most capable models availableLimited by what your hardware can run
SetupSign up and start, no model to installInstall software and download the model first
Hardware neededNone beyond a browser or appA machine capable of running the model
Cost patternSubscription or per-token billing, ongoingUpfront hardware cost, then no per-use bill
PrivacyYour prompt leaves your deviceYour prompt stays on your device
Works offlineNoYes
Cloud vs local, side by side

When cloud wins

  • The task needs the best quality available and the gap matters: hard reasoning, unfamiliar domains, the largest coding jobs.
  • You need it working right now, with no setup and no hardware requirement.
  • The workload is occasional enough that a subscription or per-use price beats buying hardware.

When local wins

  • The data is sensitive: client files, health information, unpublished work, anything you would not want leaving your device.
  • You use AI often enough that an ongoing subscription or per-token bill adds up.
  • You need it to work without an internet connection, or without depending on a service staying up.
Key idea
Cloud wins on raw quality and zero setup. Local wins on privacy, cost over time, and independence from the network. Most builders end up using both, matched to the task.
1.3

What local costs you

6 min read

"Free" and "no ongoing bill" can make local sound like a pure win. It is not. You are trading a cloud provider's recurring price for a set of costs you pay yourself, some in money and some in effort. Here they are, without the sales pitch.

Four costs to plan for

CostWhat it looks like
HardwareA machine capable of running the model. This varies a great deal depending on the model size you want and what you already own.
Setup effortInstalling a runtime, downloading model files that can be several gigabytes or more, and configuring settings correctly the first time.
The quality gapThe largest, most heavily trained cloud models are still ahead of what most people can run locally on the hardest reasoning, coding, and knowledge tasks.
Your timeTroubleshooting when something does not work, learning a new tool, and keeping models and software up to date.
What you pay, running local

The quality gap, honestly

This one deserves a straight answer. As of today, the biggest cloud models generally still lead on the hardest tasks: complex multi-step reasoning, unfamiliar or highly technical domains, and the largest coding problems. That gap has narrowed steadily, and for a large share of everyday work, drafting, summarizing, everyday coding help, chat, a well-chosen local model is genuinely good enough. Treat that as a rough pattern, not a guarantee for every model or every task.

Hardware needs vary by machine and by which model you want to run. Treat any specific number you see elsewhere as a starting point to check against your own setup, not a promise.
Key idea
Local AI trades a recurring bill for hardware cost, setup effort, a real (if narrowing) quality gap on the hardest tasks, and your own time. Go in with that trade clear, not assumed away.
1.4

Is local right for your task?

5 min read

You do not have to pick one lane forever. The useful question is smaller: for this task, right now, is local or cloud the better fit? Three questions get you most of the way there.

  1. 1Sensitive data, or must it work offline?Lean local.
  2. 2Do you need the absolute best quality on a hard task?Lean cloud.
  3. 3On a budget, with a machine that can handle it?Local pays off over time.
A quick decision path

The same builder, different tasks

  • Drafting personal notes or brainstorming: local is fine, and keeps it private.
  • Debugging an unusual, hard problem where you want the strongest model available: cloud is worth it.
  • Working through a client's confidential documents: local, by default.
  • A quick one-off question with no sensitive data and no capable machine handy: cloud is simpler.
There is no single right default. The point of this decision path is knowing which question to ask for a given task, not adopting a rule to follow blindly.
Key idea
Ask what the data is, how good the answer needs to be, and what hardware you have. Most people end up using local for some tasks and cloud for others, not one exclusively.
1.5

The privacy payoff

5 min read

"Your data stays on your machine" is the headline claim for local AI. It is worth being precise about what that actually means, and where the edges of the claim sit.

What happens when you run a model locally

  1. You type a prompt into a local app.
  2. Your own device, CPU, GPU, or both, processes it. No request is sent anywhere.
  3. The model generates a response using only your machine's hardware.
  4. The response appears on your screen. At no point did the prompt or the response leave your device.
  • No third-party server ever sees your prompt.
  • No company can log it, review it, or use it to train a future model.
  • It works exactly the same with the network cable unplugged.
This describes the model call itself. If the app around it checks for updates or reports usage statistics, that is a separate piece of behavior worth checking, not part of running the model. Read what a specific tool actually does before assuming everything about it is offline.
Key idea
"Stays on your machine" means the prompt and response never leave your device during inference. That is the concrete, checkable payoff behind the privacy claim.

AI Foundations covered why this distinction matters for what you should and should not paste into an AI tool, in Using AI well. The rest of this course is about setting up a local model so this payoff is real for you.

Key terms
Inference
The act of a model generating a response to a prompt, as opposed to training.
More

Running a model locally means inference happens on your own hardware instead of a provider's servers.

Section 1 quiz

25 questions. Pass at 75% to master this section. Retakes are unlimited, and the quiz is where the learning sticks.

Section 1 quiz · Why and when to run localQuestion 1 of 25

According to this section, what decides where your data goes with an AI tool?