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

{{ title }}

📊 Dataset: {{ dataset_name }} {% if provider_name %} 🤖 Provider: {{ provider_name }} {% endif %} 🕐 Executed: {{ timestamp }}
{% for card in summary_cards %}

{{ card.title }}

{{ card.value }}
{% if card.change %}
{{ card.change }}
{% endif %}
{% endfor %}

📈 Latency Distribution

🎯 Test Status Distribution

⚡ Evaluation Metrics

📋 Detailed Test Results

{% for result in results %} {% endfor %}
Test ID Model Status Faithfulness Relevance Coherence Latency Cost
{{ result.test_name }} {{ result.model }} {{ result.status }} {{ result.faithfulness | round(precision=2) }} {{ result.relevance | round(precision=2) }} {{ result.coherence | round(precision=2) }} {{ result.latency_ms }}ms ${{ result.cost | round(precision=4) }}
{% endblock %} {% block charts %} {% endblock %}