> 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/documentation/dokumentation/reference/limits.md).

# Limits & Konventionen

Es gibt keine Konfigurationsdatei zu pflegen. Kontinent wird über den Schlüssel konfiguriert, den Sie senden, und die Modell-ID, die Sie adressieren. Was folgt, sind die Werte, die das Gateway bei jeder Anfrage durchsetzt.

## Anfragen

| Limit                | Wert                              | Hinweise                                                     |
| -------------------- | --------------------------------- | ------------------------------------------------------------ |
| Body-Größe           | 2 MiB                             | Größere Bodies liefern `400 invalid_request`.                |
| Pflichtfelder        | `model`, `messages`               | Ein fehlendes `model` liefert `400 invalid_request`.         |
| Format der Modell-ID | `provider/model`                  | z. B. `mistral/mistral-large-latest`. Unbekannte IDs: `404`. |
| Authentifizierung    | `Authorization: Bearer sk-kt-...` | Überall erforderlich außer bei `/healthz`.                   |

## Durchsatz und Guthaben

| Limit                  | Wert                               | Hinweise                                                       |
| ---------------------- | ---------------------------------- | -------------------------------------------------------------- |
| Rate-Limit             | Pro Schlüssel, Requests pro Minute | Gleitendes Fenster aus zwei 1-Minuten-Buckets.                 |
| Verhalten des Limiters | Fail-open                          | Infrastrukturprobleme blockieren Ihre Anfragen nie.            |
| Guthabenprüfung        | Optimistisch                       | Eine kleine, durch Ihr RPM begrenzte Überziehung ist möglich.  |
| Guthabenabgleich       | Etwa 60 s                          | Hintergrund-Worker; eine Aufladung hebt die Sperre sofort auf. |
| Erschöpftes Guthaben   | `402 insufficient_credits`         | Hartes Fehlschlagen, bis eine Aufladung eingeht.               |

Siehe [Rate-Limits & Guthaben](/documentation/dokumentation/features/rate-limits.md) für das vollständige Verhalten.

## Timeouts

| Timeout                       | Wert      | Hinweise                                                                                |
| ----------------------------- | --------- | --------------------------------------------------------------------------------------- |
| Übergreifende Stream-Frist    | Keine     | Streams laufen, solange der Anbieter sendet.                                            |
| Upstream-Response-Header      | 300 s     | Wartezeit, bis der Anbieter Header sendet. Ohne Stream ist das die gesamte Generierung. |
| Inaktiver Upstream (Stream)   | 90 s      | Abbruch nach 90 s Stille; Anbieter-Chunks wirken als Keep-Alives.                       |
| Idle-Timeout am Load Balancer | 300 s     | Gilt hinter dem Gateway.                                                                |
| Wirksamkeit eines Widerrufs   | Etwa 30 s | Die TTL des Auth-Caches.                                                                |

## Verfügbarkeit

| Eigenschaft        | Wert                                           |
| ------------------ | ---------------------------------------------- |
| Verfügbarkeitsziel | 99,99 %                                        |
| Failover-Auslöser  | Upstream `429`, `5xx`, Verbindungsfehler       |
| Failover-Fenster   | Vor dem ersten gestreamten Byte                |
| Routenkette        | Eine primäre Route, eine oder mehrere Standbys |

Siehe [Maximale Verfügbarkeit](/documentation/dokumentation/models-and-routing/availability.md).

## Geld und Preise

| Konvention        | Wert                                                             |
| ----------------- | ---------------------------------------------------------------- |
| Geldeinheit       | Ganzzahliges Mikro-EUR: 1 EUR = 1.000.000 µEUR                   |
| Preiseinheit      | Pro Million Tokens, getrennt nach Eingabe- und Ausgaberate       |
| Abrechnungsmodell | Prepaid; jede Anfrage bucht exakt die Kosten ihrer Tokens ab     |
| Rundung           | Keine. Durchgehend Ganzzahlen, kein Gleitkomma in der Abrechnung |

## Souveränitätsstufen

| Stufe       | Bedeutung                                                                     |
| ----------- | ----------------------------------------------------------------------------- |
| `strict`    | Von einem **EU-eigenen** Anbieter bedient.                                    |
| `pragmatic` | Aus einer **EU-Region** eines Anbieters mit nicht-europäischem Mutterkonzern. |

## Modellarten

| Art         | Endpunkt                    |
| ----------- | --------------------------- |
| `chat`      | `POST /v1/chat/completions` |
| `embedding` | `POST /v1/embeddings`       |

## Routing

| Einstellung                    | Bereich    | Hinweise                                                                               |
| ------------------------------ | ---------- | -------------------------------------------------------------------------------------- |
| Smart Router                   | —          | Klassifiziert jede Anfrage und wählt unter den Modellen, die Sie konfiguriert haben.   |
| Modell-Pool                    | Sie wählen | Frontier, Open Weight oder gemischt. Souveränität gilt weiter.                         |
| Kosten-Qualitäts-Schwellenwert | 1 bis 10   | Optional. Wenn der Pool günstigere Open-Weight-Modelle mit stärkeren mischt.           |
| Eigene Router                  | —          | Andere Methoden: Latenz, Durchsatz, Fehlerrate. Mit Klassifizierung oder eigenständig. |

Siehe [Preis & Performance](/documentation/dokumentation/models-and-routing/price-performance.md).

## Speicherung

| Daten                                   | Gespeichert |
| --------------------------------------- | ----------- |
| Prompt- und Completion-Inhalte          | Nie         |
| Token-Anzahl (Prompt/Completion/gesamt) | Ja          |
| Latenz und HTTP-Status                  | Ja          |
| Modell-ID und berechnete Kosten         | Ja          |

Siehe [Datenschutz & Speicherung](/documentation/dokumentation/privacy/privacy.md).


---

# 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/documentation/dokumentation/reference/limits.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.
