{% extends "admin/_layout.html" %} {% from "_macros.html" import icon %} {% set section = "models" %} {% block title %}Models - LLeMbas{% endblock %} {% block heading %}Models{% endblock %} {% block admin_content %}

Every model discovered on each connection. Disable the ones you do not want cluttering the chat picker — nothing is deleted, and re-running “Test & refresh” will not bring a disabled model back on.

{% for connection in connections %}

{{ connection.name }} {{ connection.models|length }} {% if not connection.enabled %}connection disabled{% endif %}

{% if not connection.models %}

No models loaded. Run “Test & refresh” on the connections page.

{% else %} {% endif %}
{% else %}
{{ icon("server", "empty__mark") }}

No connections yet. Add one to load models.

{% endfor %} {% endblock %}