Technical and economic analysis

Sovereign AI

What it actually takes to run a full AI assistant on hardware you control, what it costs to serve it to many users, and the conditions under which data sovereignty pays for itself.

giobi.com · June 2026 · working document

The thesis

Why it is worth discussing, and on what condition.

Letting OpenAI or Anthropic process your data means sending it, in clear text, to third-party infrastructure. For many applications that trade-off is acceptable. For sensitive data — health, legal, industrial, personal records — it is a real limit.

Data sovereignty — AI running on hardware you control — is the structural answer. It is a long-term bet: it only makes sense with a client base large enough to justify the fixed cost of the hardware. This document measures exactly where that threshold lies.

The question is not "can it be done" — it can, and it has been. The question is "at how many users does it stop being a cost and become an advantage".

The technical problem

A real assistant is not a one-shot question to a model.

A useful AI assistant does not answer an isolated prompt: it carries operating instructions, project memory, and the definition of the tools it can use. In our real case, every single message carries a context of ~40,000 tokens before the user's question even begins.

On a local model, processing 40,000 tokens of context costs time on every turn. The perceived symptom: the chat feels slow, every message makes you wait. The cause is not the model "thinking": it is the context being reprocessed from scratch each time.

Context per message~40,000 tokens
Cold reprocessing~12 seconds
If repeated every turnunusable experience

The hidden mechanics

Cache reuse is everything. Three obstacles, one fix.

The key to making a local assistant responsive is cache reuse: the stable context (the instructions, the tools) should be processed once and reused on later messages. In theory this cuts the wait from 12 seconds to fractions of a second. In practice, three obstacles prevented it.

1

The model architecture

Some modern models use a hybrid attention that makes them efficient on long context but, as a side effect, prevents cache reuse: every turn starts over. A classic-attention model does not have this limit.

2

Contention over the hardware

Only one "hot" model fits on a single machine at a time. Any request asking for a different one — even a routine automated health check — evicts the model and loads another, wiping the cache. A check every few seconds was enough to ruin everything.

3

The invisible detail

The assistant framework injected a small code at the head of the context that changed on every request. It serves the originating cloud provider's cache; redirected to the local model it became the opposite — a cache saboteur, breaking reuse from the very first character.

The fix is a normalization layer in front of the inference engine that: always serves a single model (no contention), neutralizes automated health checks (no evictions), and stabilizes the context (no sabotage). It is independent of the model and of the client.

request → normalization layer → inference engine
· forces a single model  · filters health checks  · stabilizes the prefix
Before (steady state)~12 s / message
Causefull reprocessing
After, from 2nd message~0.1 s of context
Causecache reused
This work is the durable capital: it applies to any model and any hardware. Swapping the brain or the machine is now a budget decision, not an engineering problem.

Brains versus speed

On the same hardware, intelligence and speed are the same lever.

"Mixture-of-experts" models activate only a small fraction of their parameters for each word: they are very fast but reason less — they get facts wrong and drift into style. "Dense" models use all their parameters: sharper, but slower. The larger the model, the more hardware it takes to keep it alive.

ProfileIntelligenceSpeedVerdict
Experts, few activeLowvery highturbo, but imprecise
Dense ~70BHighlow*serious
Top-tier cloudVery highhighnot local

*on entry-level hardware. With the right tier a dense 70B model becomes fully responsive.

The leap against the "lobotomy" is the dense 70B model. But to run it well — fast and with wide context — entry-level hardware is not enough: it takes the next tier.

The economics for N users

The unit of cost is throughput, not the user.

A GPU machine is a fixed budget of work per second, shared across all users. The 40,000-token context is the dominant factor: shared-prefix caching — many users of the same service sharing the same base context, processed once and reused by all — is what decides whether one machine serves five users or fifty.

Cost per request

Cloud (pay-per-use)
~$0.005
per request, on average. Scales linearly, zero idle cost, the most intelligent model available.
Self-host (fixed fee)
€350+
per month, paid even while idle. Worth it only above a volume threshold.

Break-even point

HardwareFee/monthBreak-evenModelUsers*
Entry (48 GB)~€350~2,500 req/dlightweight~80
Mid (96 GB)~€1,000~7,000 req/dserious 70B~230
High (160 GB)~€2,500~17,000 req/d70B+ / 123B~550

*estimate at ~30 requests per user per day. The break-even is high because the cloud's per-token cost is very low.

In short: below ~200 active, steady users, the cloud wins — cheaper, smarter, no operations. Above, and with stable load, self-hosting on adequate hardware starts to pay off — and at that point it brings data sovereignty as a dividend.

What sovereignty actually buys

Not all on-premise is sovereignty.

A distinction often lost: renting a GPU machine does not grant data sovereignty. The data is still processed on someone else's hardware. It takes the large AI providers out of the loop, but it does not guarantee physical control.

True sovereignty — data that never leaves hardware under your control — requires your own hardware, on-premise. And there you accept a quality ceiling in exchange for budget: the model will be whatever your machine can hold, not the most powerful on the market.

Cloud

Maximum quality, minimal cost. No sovereignty.

Rented GPU

Outside the big providers. Partial sovereignty.

Own hardware

Real sovereignty. Quality ceiling set by budget.

Recommendation

A staged path, tied to the number of clients.

The hard part — making a local assistant responsive and scalable — is solved and reusable. What remains is a market decision: how many clients make sovereignty an advantage rather than a cost.