Choosing a posture
Three ways to draw the line. Most companies pick the middle one.
Private AI is not one architecture, and the strictest option is not automatically the right one. Each of these buys something and costs something, so both are printed on the card.
01Boundary added
Frontier API, guarded
You keep using the best available models, and we put the boundary in front of them: sensitive fields redacted before the call, zero-retention terms in place with the provider, policy on who may ask what, and an audit log you own.
- Best for
- Teams whose constraint is contractual and auditable rather than absolute.
- What it costs you
- Inference still happens on someone else's hardware. That is a control, not residency, and it should never be described as the latter.
02Hybrid routing
Sensitive in, everything else out
A router classifies each request. Anything touching the data classes you have named runs on a model inside your own environment; everything else goes to a frontier API under the same redaction and logging. One gateway, two destinations.
- Best for
- Most companies. A minority of traffic is genuinely sensitive and it is rarely the expensive part.
- What it costs you
- You are running two paths, so the classifier becomes a thing that has to be right. We build it with evaluations and fail it closed, toward the private side.
03Fully self-hosted
Open weights, your environment
Llama, Mistral or Qwen served on your own GPUs or in your cloud account through vLLM, with private retrieval over your own stores. No third-party inference call exists in the path — no provider to trust, no retention window to negotiate.
- Best for
- Regulated data, contractual residency requirements, air-gapped environments, and anything a regulator may ask you to reconstruct.
- What it costs you
- You take on GPU capacity and the operations that come with it, and you give up the top of the frontier reasoning curve. We size both honestly before you commit.
Which of your workloads belongs on which side is a decision for your risk owner, not for us. The audit produces the list and the evidence; you draw the line.