{% extends 'admin/base.html.twig' %} {% block title %}KI Modell-Generierung Config{% endblock %} {% block body %}

KI Modell-Generierung Config

{% if is_granted('ROLE_SUPER_ADMIN') %} Neue Konfiguration {% endif %}
{% for config in configs %} {% else %} {% endfor %}
Modell Version Stream Temp Top K Top P Repeat Ctx Status Aktion
{{ config.modelName }} v{{ config.version }} {% if config.stream %} Streaming {% else %} Blocking {% endif %} {{ config.temperature }} {{ config.topK }} {{ config.topP }} {{ config.repeatPenalty }} {{ config.numCtx }} {% if config.active %} Aktiv {% else %} Inaktiv {% endif %} {% if not config.active and is_granted('ROLE_SUPER_ADMIN') %} Aktivieren
{% endif %}
Keine Konfiguration vorhanden.
Hinweis: Änderungen wirken sich unmittelbar auf die Generierungsparameter des aktiven Modells aus. Nur eine Konfiguration pro Modell kann aktiv sein.
{% endblock %}