What this comes down to

  1. The blocking constraint is almost never the model. It is an undefined decision, an undefined data boundary and an unnamed owner.
  2. Deploy into the production estate from the first day. Building elsewhere and migrating later is where governance assumptions quietly break.
  3. Design the control pattern for reuse. The second use case should be materially cheaper than the first, or the first one was built wrong.
  4. Keep a documented hosted-model path. Refusing all external inference pushes teams into shadow usage you cannot see.

Most enterprises approaching AI seriously arrive at the same wall. The capability is obvious, the appetite is real, and the data that would make it valuable is the data that cannot leave the building. Legal has read the processing terms. Risk has asked where the prompts are logged. Somebody has pointed out that the model behind the API changed twice last quarter without notice. The programme slows, and what survives is a set of demonstrations rather than a capability.

On-premise deployment resolves that constraint, but it introduces a different one. You now own the operating problem: capacity, versioning, evaluation, access control and the unglamorous business of keeping something running that senior people have begun to rely on. This guide sets out the sequence we use, and the decisions that have to be settled before any of it is engineering.

The four decisions that gate everything else

Deployments do not fail on infrastructure. They fail because four questions were never answered in writing, and the absence only becomes visible at the point where the capability would have gone live.

  1. 01

    Which decision does this support

    Name the decision, the person who makes it and how often it recurs. "Improve productivity in operations" is not a decision. "Decide which of the day’s exception reports a controller reviews first" is.

  2. 02

    What data may it read

    Enumerate the sources, the classification of each, and the lawful basis. Ambiguity here is what stalls the programme in legal review three months later.

  3. 03

    Who owns the output

    A named accountable individual in the business, not the innovation function. If the only owner sits in a centre of excellence, there is no route into operations.

  4. 04

    What happens when it is wrong

    The detection method, the reversal path and the escalation. Write the failure case before the success case, because the failure case is what governance will actually examine.

A reference architecture that survives audit

The shape below is deliberately conventional. Novelty in the architecture is not where the value sits, and every unusual component is something your team will have to defend to an auditor and maintain after we leave.

  1. An inference layer running inside your boundary, with pinned model versions and a documented upgrade path. Pinning matters more than raw capability, because reproducibility is what makes output usable as evidence.
  2. A retrieval layer over your own document and record stores, with permissions resolved at query time against your existing identity provider rather than copied into a separate index.
  3. An orchestration layer that holds the business logic, the tool definitions and the guardrails. This is the part your engineers should own outright and be able to read.
  4. An evaluation harness with a fixed test set drawn from real historical cases, run on every model or prompt change, with results stored over time.
  5. An audit store capturing input, intermediate tool calls and output, retained under the same policy as any other record of a business decision.

The permissions point deserves emphasis because it is the most common design defect we find. Copying documents into a vector index strips the access control that governed the originals, and the first time a retrieval surfaces a restructuring memo to somebody who should not see it, the programme loses its licence to operate. Resolve entitlement at query time even though it costs latency.

Sequencing the first deployment

Work in the production estate from the beginning, at low volume and with a narrow user group. The instinct to build in a sandbox and migrate once it works is understandable and almost always costly. Sandboxes have permissive networking, borrowed credentials and no change control, so every governance assumption is validated against an environment that does not resemble the destination.

A workable shape is four to six weeks to a first governed use case in limited production, then a deliberate pause. Use the pause to run the control set against a real audit question, measure what the capability actually cost to run, and rewrite the runbook based on what the operators found confusing. The pause is not a delay. It is what makes the second use case fast.

The organisations that get furthest are not the ones with the best models. They are the ones that decided who is accountable before they decided what to build.
Sixpence engagement note, AI governance practice

Where hosted models still belong

A blanket prohibition on external inference does not produce safety. It produces shadow usage, which is the same risk without any visibility. The defensible position is a written data-handling rule that says which classifications may reach a hosted endpoint, under which contractual terms, with which logging. Most enterprises land on a split: sensitive and evidential workloads stay inside, exploratory and public-data work goes out under a documented rule.

ConsiderationOn-premiseHosted API
Restricted or contractually bound dataStrong fitUsually excluded
Reproducible output for evidenceStrong fit, versions are pinnedWeak, endpoints change
Frontier capability on hard reasoningTrails the marketStrong fit
Bursty experimentationPoor, capacity is fixedStrong fit
Steady high volumePredictable costCost scales with use
Operating burden on your teamReal and ongoingMinimal
Where each option tends to win

What this actually costs to run

Enterprises consistently underestimate two lines. The first is evaluation, because a capability nobody measures degrades silently and the measurement has to be somebody’s standing responsibility. The second is second-line assurance, because the risk function needs enough understanding to challenge the output rather than approve it on trust. Budget both explicitly. A deployment with no evaluation owner and no informed challenge is a deployment that will be switched off after its first visible error.

Hardware is usually the smallest surprise. Where organisations get caught is in assuming that inference capacity sized for a pilot will hold when a capability becomes part of a daily workflow, and in not reserving headroom for the evaluation runs that a change process requires.

What a finished deployment looks like

  • A named business owner who can describe the decision the capability supports without reference to the technology.
  • A runbook your own engineers execute, including the path for a failed model upgrade.
  • An evaluation suite with results over time, so drift is visible rather than inferred.
  • A control set your risk function wrote, or at minimum reviewed and challenged.
  • A board-readable record of what the system decides, what it may read and what it may not do without human approval.
  • A cost line in an operating budget rather than a project budget.

None of those six items is a model choice. That is the point. The model is the part of this you can change later at modest cost; everything else is the capability.

Related questions

Do we need our own GPUs to run AI on-premise?

Not always. A private tenancy you administer, with contractual isolation and your own key management, satisfies most sovereignty and audit requirements. Owned hardware becomes the better answer when the workload is steady, when network egress is genuinely prohibited, or when a regulator has asked for physical locality.

How do we stop an on-premise model falling behind hosted capability?

Plan for the upgrade rather than the model. A pinned version with a tested upgrade path and an evaluation suite lets you move deliberately when a better open-weight model appears. The organisations that fall behind are the ones with no evaluation harness, because they cannot tell whether a change is an improvement.

Can we start on-premise without a full data governance programme?

Yes, and you generally should. Establish the data boundary for the specific use case in front of you, and let the live deployment tell you which structural defects actually change outcomes. Enterprise-wide remediation before a first deployment is how programmes spend two years without producing a decision.

Every question we are asked