{% extends "admin/_layout.html" %} {% from "_macros.html" import icon, model_avatar %} {% set section = "models" %} {% block title %}{{ model.label }} - Models - LLeMbas{% endblock %} {% block heading %}{{ model.label }}{% endblock %} {% block admin_content %} {% if saved %}
{{ icon("check", "icon--sm") }} {{ saved }}
{% endif %}
{{ model_avatar(model, cls="model-detail__avatar") }}
{{ model.label }}
{{ model.model_id }}
via {{ model.connection.name }}
{% if model.model_id == default_model %} {{ icon("star", "icon--sm") }} default model {% else %}
{% endif %}
{% if model.image_path %}
{% endif %}

PNG, JPEG, WEBP or GIF, under 2 MB. Without one, the model gets a generated badge whose colour is derived from its id.

Presentation

Shown instead of the raw id. Empty uses the id.

Place in the picker, 1–{{ total }}. Typing a number is the workable way to move a model a long distance.

Shown in the chat settings panel and your users' settings.

System prompt

Used by chats on this model that have no prompt of their own. A chat's own prompt overrides this; this overrides the instance prompt.

{% if instance_prompt %} Leave empty to fall back to the instance prompt shown above. {% else %} Leave empty to send no system prompt. {% endif %}

Capabilities

Endpoints rarely advertise these reliably, so they are your call. reasoning shows the thinking block, vision lets images be sent to this model, and tools is reserved for a feature not built yet.

{% for name in capabilities %} {% endfor %}

Availability

Uncheck to restrict this model to chosen groups. Administrators always have access.

Groups with access {% if groups %}
{% for group in groups %} {% endfor %}

Ignored while the model is available to everyone.

{% else %}

No groups yet — create one to restrict access.

{% endif %}
Back to all models
{% endblock %}