{% extends "base.html" %} {% block title %}Routing - Janus{% endblock %} {% block routing_active %}bg-gray-700 text-white{% endblock %} {% block content %}

Routing & Rotation

{{ overview.rotation_note }}

Manage keys
{% if overview.cooldown_count > 0 %}
{{ overview.cooldown_count }} account(s) are in cooldown after recent errors and are skipped until the timer expires.
{% endif %} {% if overview.quota_warnings %}

Subscription quota near or at limit

{% endif %}

Provider account pools

{% include "routing_partial.html" %}

Combo fallback chains

When a client sends model: "combo-name", models are tried left-to-right.

{% if overview.combos %}
{% for combo in overview.combos %}

{{ combo.name }}

    {% for model in combo.models %}
  1. {{ loop.index }} {{ model }} {% if not loop.last %} → fallback {% endif %}
  2. {% endfor %}
{% endfor %}
{% else %}
No combos configured. Create one.
{% endif %}
{% endblock %}