> 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/models-and-routing/availability.md).

# Maximale Verfügbarkeit

Kontinent zielt auf **99,99 % Verfügbarkeit**, indem jedes Modell über mehrere Anbieter verteilt wird. Fällt ein Anbieter aus, übernimmt automatisch ein anderer. Ihre Anfrage läuft weiter; Sie bauen das Failover nie selbst.

## Funktionsweise

Jedes Modell kann eine Kette von Routen definieren: einen **primären** Anbieter und einen oder mehrere **Standby**-Anbieter. Bei jeder Anfrage stellt Kontinent eine Kandidatenliste zusammen, zuerst die primäre Route und dann ihre Fallbacks, und arbeitet sie ab.

<table data-view="cards"><thead><tr><th></th><th></th><th></th></tr></thead><tbody><tr><td><h4><i class="fa-circle-1" style="color:$primary;">:circle-1:</i></h4></td><td><strong>Primär</strong></td><td>Die Standardroute. Bedient die Anfrage, solange sie gesund ist.</td></tr><tr><td><h4><i class="fa-circle-2" style="color:$primary;">:circle-2:</i></h4></td><td><strong>Standby</strong></td><td>Als Nächstes an der Reihe. Übernimmt sofort, wenn die primäre Route nicht liefern kann.</td></tr><tr><td><h4><i class="fa-circle-3" style="color:$primary;">:circle-3:</i></h4></td><td><strong>Standby</strong></td><td>Ein weiterer Fallback für dasselbe logische Modell, bei einem anderen Anbieter.</td></tr></tbody></table>

## Wann wird umgeschaltet?

Liefert ein Anbieter `429`, einen `5xx`-Fehler oder einen Verbindungsfehler, versucht Kontinent den nächsten Anbieter in der Kette, transparent, bevor irgendwelche Bytes bei Ihnen ankommen.

{% hint style="info" %}
Bei **Streaming**-Anfragen erfolgt das Failover **vor dem ersten Byte**. Sobald das erste Token draußen ist, äußert sich ein Anbieterfehler als abgebrochene Verbindung mitten im Stream. Behandeln Sie einen abgeschnittenen Stream also sauber. Siehe [Streaming](/documentation/dokumentation/features/streaming.md).
{% endhint %}

Das Ergebnis: ein einzelner Anbieterausfall, eine Rate-Limit-Spitze oder ein regionaler Aussetzer wird von der nächsten Route in der Kette aufgefangen, statt für Sie zu einer fehlgeschlagenen Anfrage zu werden.

## Eine ID, mehrere Routen

Da das Failover an die **logische Modell-ID** gebunden ist, ändert sich Ihr Code nie. `anthropic/claude-opus-4.8` wird heute vielleicht von Bedrock bedient und während einer Störung von Vertex. Dieselbe Anfrage, dasselbe Antwortformat.

| Route   | Rolle   | Verhalten                                          |
| ------- | ------- | -------------------------------------------------- |
| Bedrock | Primär  | Bedient die Anfrage, solange sie gesund ist.       |
| Vertex  | Standby | Übernimmt bei `429`, `5xx` oder Verbindungsfehler. |
| Azure   | Standby | Zweites Failover, dasselbe logische Modell.        |

## Was Sie nicht selbst bauen müssen

<table data-card-size="large" data-view="cards"><thead><tr><th></th><th></th><th></th></tr></thead><tbody><tr><td><h4><i class="fa-arrows-rotate" style="color:$primary;">:arrows-rotate:</i></h4></td><td><strong>Kein Retry-Code</strong></td><td>Wiederholungen und Backoff leben im Gateway, nicht in Ihrer App.</td></tr><tr><td><h4><i class="fa-shuffle" style="color:$primary;">:shuffle:</i></h4></td><td><strong>Kein Anbieter-Jonglieren</strong></td><td>Eine ID löst sich zu der Route auf, die gerade gesund ist.</td></tr></tbody></table>

{% hint style="info" %}
Das Rate-Limiting ist **fail-open**: Hat der Speicher unseres Limiters Probleme, werden Ihre Anfragen dadurch nie blockiert. Ein separates `429 upstream_rate_limited` bedeutet, dass ein Anbieter uns gedrosselt hat, also wiederholen Sie mit Backoff. Siehe [Rate-Limits & Guthaben](/documentation/dokumentation/features/rate-limits.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/documentation/dokumentation/models-and-routing/availability.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.
