> For the complete documentation index, see [llms.txt](https://docs.kontinent.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kontinent.ai/privacy/privacy.md).

# Privacy & retention

What Kontinent stores, and what it never stores.

Zero prompt retention is a **design contract**, not a setting.

## What is never stored

Request and response **bodies are never persisted or logged** anywhere in the pipeline. This is enforced by an end-to-end test that greps logs for a sentinel value, so a regression fails CI.

Because of this, the gateway **cannot replay a prompt**. Do not build anything that assumes it can. There is no server-side history of your inputs or model outputs.

## What is stored

Only metadata survives a request:

* Token counts (prompt / completion / total)
* Latency and HTTP status
* Model id and computed cost

This metadata powers billing, usage analytics, and rate limiting. None of it contains your prompt or the model's response.

## Data residency

Requests are served by EU-resident providers. Each model's [`sovereignty` tier](/models-and-routing/models.md#sovereignty-tiers) tells you whether the provider is EU-owned (`strict`) or an EU region of a non-EU parent (`pragmatic`), so you can enforce the residency guarantee your use case requires.

{% hint style="info" %}
For the compliance framing (GDPR, the EU AI Act, and what sovereignty means in practice), see [Maximum privacy](/privacy/data-privacy.md).
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.kontinent.ai/privacy/privacy.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
