{% extends "settings_base.html" %} {% import "_icons.html" as icons %} {% block settings_content %}

Incoming Server

Persisted for the next process startup.

Network exposed. Use only on trusted networks.

Settings Areas

Primary registries live on focused tabs.

Pass-through Upstream and Model Fallback

Configure the final routing stages after explicit model routes.

Routing order: matching route, Model fallback provider/model, then requests are forwarded unchanged to the default pass-through upstream when fallback is disabled or incomplete.

Default Compatibility Fixes

Applied to fallback requests and routes using default behavior.

{% for fix in available_compat_fixes %} {% endfor %}
Advanced manual edit

Recent Model Routes

Recently used models in the selected retention window.

{{ icons.icon("plus", class_name="button-icon") }}Manage routes
Enter a model to preview its route.
Requested modelRequestsRouteProviderStatus
Loading recent routes…

Test Route / Diagnostics

Send a sample request through the configured resolution path.

{% if test_result %} {{ "Diagnostic succeeded" if test_result.ok else "Diagnostic failed" }} {{ test_result.kind }} · {{ test_result.status_code | default("error", true) }} · {{ test_result.model_route | default("model fallback" if test_result.upstream_model else "pass-through upstream", true) }} {{ test_result.url }} {% if test_result.error %}

{{ test_result.error }}

{% else %}
{{ test_result.body }}
{% endif %} {% else %}

Test results appear here.

{% endif %}

Data Retention

Delete older request records and attached image payloads.

Older than {{ days }} days: {{ trim_count }} rows will be deleted.

{% endblock %}