{% extends 'admin/base.html.twig' %} {% block title %}Retrieval-Test{% endblock %} {% block body %}

Retrieval-Test – {{ config.modelName }} (v{{ config.version }})

Zurück
{# ====================================================== #} {# Konfigurationsübersicht #} {# ====================================================== #}
Max Chunks: {{ config.retrievalMaxChunks }}
Vector Top K: {{ config.retrievalVectorTopK }}
{# ====================================================== #} {# Testformular #} {# ====================================================== #}
{# ====================================================== #} {# Ergebnisse #} {# ====================================================== #} {% if results is not empty %}
Gefundene Chunks ({{ results|length }})
{% for chunk in results %}
{{ chunk|nl2br }}
{% endfor %}
{% endif %} {% endblock %}