AI agents · OpenClaw · self-hosting · automation

Quick Answer

Zero Data Retention vs Customer Keys vs Self-Hosted LLM 2026

Published:

The Short Answer

By 2026 “the vendor won’t train on my data” is table stakes; the live question is who can read it, and for how long. Three architectures answer that differently:

Zero data retention (ZDR)Customer-managed keys + storageSelf-hosted open weights
Who can read promptsVendor, transiently, during the requestNobody at the vendor — data sits in your bucket under your keysNobody outside your org
RetentionNone after responseRolling window, in your account, for misuse detectionWhatever you configure
Frontier capabilityYes (GPT-6 Astra, Fable 5.1 via bridge)Yes (Fable 5.1 under EFS; Astra under PSP preview)Trails frontier by ~5–8 index points
Extra costNone on token priceCloud storage/egress; ~10% premium on regional cloud endpointsGPUs, ops, ~zero per-token licence
Who staffs the alert queueVendorYouYou
Best forSensitive but not regulatedBanks, healthcare, legal — anyone who must audit accessData that may not leave the building

Default: ZDR for anything sensitive, customer-managed keys when a regulator needs the audit trail, self-hosting only for the workloads that legally cannot leave.

Option 1: Zero Data Retention

The lightest-weight guarantee, and in September 2026 still the most common. OpenAI offers ZDR to eligible API customers on its frontier models including GPT-6 Astra: prompts and responses are not retained after processing, are not available to OpenAI personnel, and are not used for training unless the customer opts in. Anthropic dropped ZDR for its top tier at Claude Fable 5 (30-day retention for cross-session detection) but is granting it on Fable 5 and 5.1 as a bridge until Enterprise Frontier Safeguards reaches each customer.

Strength: zero architectural work, zero price premium, works on the best models. Weakness: it is a promise, verified by audit rather than by your own keys — and the vendor’s per-request safety classifiers still see the content in flight. Multi-session misuse detection is weaker, which is exactly why both labs built option 2.

Option 2: Customer-Managed Keys and Storage

The 2026 innovation. Anthropic’s EFS (announced September 1) writes monitoring data to the customer’s own S3, Azure Blob or Google Cloud Storage bucket under customer-managed encryption keys; automated detection runs over a rolling window, and every flag goes to the customer’s security team with no Anthropic human review. OpenAI’s Private Safety Processing (previewed August 19, white paper promised for September) keeps content on customer infrastructure or on OpenAI storage encrypted with keys OpenAI does not hold, and returns only a narrow signal.

Strength: you get frontier models and the log — the thing regulators actually ask for — with vendor staff structurally locked out. EFS is free and does not change model pricing or rate limits. Weakness: you now staff the alert queue. Cloud storage and egress are billed to you. Going through Bedrock, Google Cloud or Foundry for the residency story adds roughly a 10% token premium. And PSP is still preview-stage: treat it as terms only when it is in your contract.

Option 3: Self-Hosted Open Weights

The only option where no third party ever receives a prompt. The open-weight frontier in September 2026 is genuinely usable: DeepSeek V4 Pro, Kimi K3, Qwen 3.8 Max and GLM-5.3 all land around 57–60 on the Artificial Analysis Intelligence Index, and Mistral just raised €3 billion to push European open-weight models further. Serve with vLLM on your own GPUs or a private cloud tenancy.

Strength: absolute data control, no per-token licence, no vendor cutoff risk (see OpenAI’s Cursor model access ending November 12, 2026). Weakness: capability. GPT-6 Astra and Claude Fable 5.1 score 61–66 on the same index, and the gap is larger on long-horizon agentic work. You also own uptime, patching, model-upgrade testing, and the GPU bill — which for a single 375B–743B-class model is a real line item before you serve a single token.

The Hybrid Most Enterprises Actually Run

  1. Classify by obligation. Which data may not leave, which may be processed but not retained, which needs an audit trail.
  2. Route accordingly. Self-host the first tier; ZDR API for the second; EFS/PSP-style customer-key deployment for the third.
  3. Put the router under your control. A gateway that picks the backend per request — and logs the decision — is the artefact your auditor will want to see.
  4. Re-check quarterly. Retention policies changed twice at Anthropic and once at OpenAI in the last three months; the table above has a shelf life.

Sources