Privilege AIMKC2 results

Privacy is
an architecture
decision.

Minimisation, purpose limitation and deletion are design constraints on an AI pipeline. Applied after the fact, they are very expensive.

READ THE DEFINITION ↓MINIMISE · LIMIT · DELETE

01 / DEFINITION

The short answer first.

What is AI data privacy?

AI data privacy is the application of privacy principles — minimisation, purpose limitation, retention limits and individual rights — to systems that copy and transform data continuously. In an AI pipeline these principles become concrete engineering decisions about retrieval scope, logging and deletion.

The reason privacy is harder in AI systems is not that the principles change. It is that the system creates derivatives automatically, and each derivative raises the same questions again: is this the minimum needed, is it being used for the purpose it was collected for, how long is it kept, and can it be deleted.

02 / MINIMISATION AT RETRIEVAL

The most effective privacy control in an AI pipeline.

Most AI privacy exposure is created by retrieving more than the task requires. A pipeline that places whole documents in a prompt because chunking was inconvenient has multiplied the data in play several times over, for no quality benefit — long contexts frequently reduce answer quality as well as increasing exposure.

Concrete minimisation measures, in rough order of value:

  • Retrieve passages, not documents. Smaller units, scored for relevance, with a cap on how many enter the context.
  • Filter by identity before the search. The requester's permissions constrain the candidate set, so nothing out of scope can be retrieved at all.
  • Strip fields the task does not need. Names, identifiers and contact details are frequently irrelevant to the question being asked.
  • Redact before logging. Observability rarely needs the sensitive content, only the structure and the identifiers.

03 / PURPOSE AND REUSE

Where AI programmes most often overreach.
Reuse questions that recur in AI programmes, and the distinction that usually resolves each one.
ReuseThe questionWhat usually matters
Client material as training dataWas it collected to provide a service, or to build a product?Whether the model is shared beyond the original relationship
Production data in evaluation setsIs evaluation part of providing the service?Access control, retention and whether copies persist
Logs used for improvementDoes observability extend to product development?Separating the operational log from any retained corpus
Cross-client aggregationDoes anything derived from one client benefit another?Whether the derivative can be traced back to a source

These are decisions for the organisation's legal and privacy functions, and the engineering contribution is to make the technical facts unambiguous: what is copied where, what persists, who can read it, and whether a derivative can be traced back. Ambiguity in those facts is what turns a routine question into a lengthy one.

Fine-tuning deserves particular care, because a model trained on sensitive material can reproduce parts of it, and the weights are not an object from which a single record can be removed. Where a fine-tune is warranted, the operating assumptions should include restricted deployment and explicit testing for memorisation. See AI model fine-tuning.

04 / WHERE PRIVATE DEPLOYMENT HELPS

What changes when nothing leaves.
↳ 01

Fewer parties, fewer questions.

No third-party transfer means no transfer analysis, no sub-processor chain and no reliance on a provider's retention configuration.

↳ 02

Deletion you can execute.

Every derivative sits in infrastructure you operate, so a deletion procedure can actually reach all of them.

↳ 03

A boundary you can describe.

The strongest statement about confidential material is that it did not leave, and that is a property of the architecture rather than of a contract.

Private deployment does not remove the privacy work. Minimisation, purpose limitation, access control and retention still apply inside the boundary, and an on-premise system with a log store readable by the whole engineering team is not private in any meaningful sense. What it removes is a whole category of questions about who else holds a copy — which is why Privilege AI treats data access, model authority and operational constraints as one design problem. See private AI.

05 / QUESTIONS

Asked when privacy review meets an AI project.

Does using AI on personal data require different safeguards?

+

The principles are the same and the surface is larger, because the pipeline creates derivatives — embeddings, caches, logs, training sets — that each need the same analysis. The practical difference is the number of copies, not the rules.

Can personal data be removed from a trained model?

+

Not straightforwardly. Weights encode statistical traces of training data and are not a record store from which a row can be deleted. Options are retraining without the material or not including it in the first place, which is the reason to be conservative about fine-tuning corpora.

Is anonymised data safe to use with AI?

+

It reduces risk and is not a guarantee. Language models are effective at combining context, so a document stripped of names can still be identifying when retrieved alongside related material. Test re-identification on realistic combinations rather than on single documents.

Do we need to tell people AI processed their data?

+

A question for your privacy and legal functions, and the engineering requirement is the same either way: know precisely what was processed, by which system, when, and what persisted. Without that record no statement can be made accurately.

Does on-premise deployment satisfy privacy requirements?

+

It removes the transfer question and leaves everything else — minimisation, access control, retention, deletion — exactly as it was. It is a strong simplification, not a completion.

Decide the boundary
before you build.

Privilege AI designs AI systems where data access and operational constraints are settled at architecture time.