C.W.K.
Stream
Lesson 01 of 05 · published

The Local Proposition

~22 min · local, strategy, privacy, cost

Level 0Downloader
0 XP0/41 lessons0/11 achievements
0/120 XP to next level120 XP to go0% complete

Why local at all

Cloud APIs are easy. Local AI is different: privacy, cost, latency, offline, and freedom from vendor terms. Pick local when one of those properties is load-bearing for the system you're building. If none of them matter, the cloud will out-quality you for less effort. The decision is operational, not ideological.

Five concrete reasons local wins

  • Privacy. Patient images, internal contracts, journal entries, and unreleased product code never leave the machine. No vendor logging, no future training-data risk.
  • Cost. Zero marginal cost per token after hardware. Million-token batch jobs that would cost real money on the cloud are free locally.
  • Latency floor. First-token latency drops below 100 ms on a warm model on Apple Silicon. No round-trip variance.
  • Offline / outage tolerance. Plane, rural site, AWS incident, vendor account suspension — local keeps working.
  • No rate limit, no key rotation. Run the model as hard as the hardware allows.

What you give up

Frontier quality. A 70B local model is excellent, but Claude Opus, GPT-5, and Gemini 3 are still ahead on hardest reasoning. You also own the operational surface: model updates, hardware sizing, quantization choice, KV cache budget. The right pattern is almost never only local — it's local-first with cloud fallback for the cases the local model can't handle.

Code

Decide local vs cloud·markdown
Use local when ONE of these is load-bearing:
- data must not leave the machine
- monthly cost ceiling is real
- offline / outage tolerance required
- you need a fallback when cloud is down
- you need a deterministic lab for reproducible experiments

Otherwise, default to the strongest cloud model and revisit later.

External links

Exercise

Write a one-page memo deciding local-first vs cloud-only for one workload you actually have. State which of the five reasons applies, what the fallback path is, and the smallest first artifact you'd build to test the decision.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.