Skip to content
C.W.K.
Stream
Lesson 06 of 07 · published

Cloud by Choice: When Quality Wins

~12 min · fleet, cloud, quality, availability, our-judgment

Level 0Spec-Sheet Skimmer
0 XP0/91 lessons0/19 achievements
0/100 XP to next level100 XP to go0% complete
"Every voice this family hears and every transcript it searches came from the cloud, on purpose, from a household that owns a terabyte of unified memory. The reason is quality. Write the reason down, because it can change."

The Ruling

At this quest's plan gate the household stated its rule on the cloud in one sentence: text-to-speech and speech-to-text use frontier cloud models for quality, not for lack of local capability; all of it could run locally. The fleet's records agree. The video-memory engine's transcription runs on a cloud provider selected from public benchmarks and validated by a worker-only comparison; its summaries — 2,462 of 2,463 — ran on cloud models through the hub's own daemon; the voice engine that speaks for Pippa holds a cloud provider's credentials and every app that speaks proxies through it. Meanwhile the same household runs its memory search, its image generation, its coding agent's local leg and its dictation on its own silicon, and the voice sibling transcribes on-device with a Whisper model on the Neural Engine for the family's everyday dictation. The line is not local versus cloud. It is good enough versus quality-wins, drawn per job.

The Same Line, Drawn by Apple

Apple draws it the same way at a different scale. Its on-device foundation model is a ~3B on the Neural Engine, and "a larger server-based language model available with Private Cloud Compute and running on Apple silicon servers" takes the requests the small one cannot — the chip vendor's own admission that the edge holds what is good enough and the cloud holds the rest, with the routing done per prompt. The rivals track priced why: frontier quality is the compute stage at data-centre scale, and no pool in a room competes with a rack for it. A household that owns the pool and buys the rack's output for exactly the jobs where the rack is better is not conceding anything; it is reading the referee's line correctly.

Why the Reason Must Be Written Down

The code block is a table of the household's decisions with a column the household's own tools make possible: what would have to change for the decision to flip. For the summaries it is one setting in the daemon; for transcription it is a local model that matches the provider on the household's own comparison; for voices it is a local voice the family accepts. None of those is a rewrite, because the tier lesson's door made the tier a setting and the hub lesson's pool made the setting real. A decision recorded with its reason expires when the reason does. The edge track's last-rung lesson is what happens when the reason expires all at once — every cloud down — and the reason the setting exists.

Code

cloud_choice.py — where each job runs, why, and what would flip it·python
#!/usr/bin/env python3
"""Cloud by choice: for each of the household's model-backed jobs, where it runs, and the
stated reason. A table of the household's own decisions, with the physics-track fact
that would have to change for the decision to flip."""
jobs = [  # job, where, stated reason, what would flip it
    ("memory search (embed + rerank)",   "local, the hub",      "good enough; all prefill; one copy",                "nothing needed -- already local"),
    ("image generation",                  "local, the hub",      "good enough; the pool holds every checkpoint",     "nothing needed"),
    ("coding agent, local leg",           "local, any Mac",      "a 27B fits a laptop; compiled mini protocol",       "nothing needed; frontier leg used when judgment matters"),
    ("video transcripts (speech to text)","cloud provider",      "quality: frontier ASR chosen from public benchmarks", "a local ASR that matches it -- the voice sibling runs Whisper on-device for dictation already"),
    ("voices (text to speech)",           "cloud provider",      "quality: the household's stated reason",            "a local voice the family accepts"),
    ("transcript summaries",              "cloud, via the hub's daemon", "quality: 2,462 of 2,463 chose cloud models", "a local 31B that summarizes as well; the setting is one field"),
    ("frontier chat and long reasoning",  "cloud",               "quality; local models 'closing in'",                "a local model the family judges contest-grade"),
    ("everything Pippa-backed",           "any tier, a setting", "the door lists local, server, cloud",               "-- the setting exists so the flip needs no code"),
]
print(f"{'job':38} {'where':28} {'reason':52} what would flip it")
for j, w, r, f in jobs:
    print(f"{j:38} {w:28} {r:52} {f}")
print("\nthe household's rule: cloud for quality, never for lack of capability; all of it could run locally.")

External links

Exercise

Build the code block's table for your own jobs: where each runs, the reason in five words, and what would have to change to flip it. Put on your card the one job you run in the cloud for quality that you would test against a local model first — and the test you would use.
Hint
The test is the thing. 'Sounds fine' is not a test; a blind comparison of ten samples is. The household validated its transcription choice with a worker-only benchmark before committing, and the flip condition is the same benchmark run again.

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.