{% extends "base.html" %} {% block head %} {% endblock %} {% block content %}

Run Details: #{{ run.id[:8] }}

{{ run.timestamp.strftime('%Y-%m-%d %H:%M:%S') if run.timestamp else 'N/A' }} {{ run.status|default('Pending')|title }}
{% for metric, value in run.metrics_summary.items() %}
{{ metric }}
{{ (value * 100)|round(1) }}%
{% endfor %}

Detailed Interactions

Review individual queries and their retrieval quality.

    {% for item in items %}
  • {{ item.query }}

    {{ item.response[:100] }}...

    {% if item.metrics.faithfulness is defined and item.metrics.faithfulness is not none %}
    Faithfulness {{ (item.metrics.faithfulness * 100)|round(0) }}%
    {% endif %}

    Full Response

    {{ item.response }}

    Retrieved Contexts

      {% for ctx in item.retrieved_contexts %}
    • {{ ctx }}
    • {% endfor %}
    {% if item.metrics %}

    All Metrics

    {% for m_name, m_val in item.metrics.items() %}
    {{ m_name }} {% if m_val is number %} {{ m_val|round(3) }} {% else %} {{ m_val }} {% endif %}
    {% endfor %}
    {% endif %}
  • {% endfor %}
{% endblock %}