{% extends "base.html" %} {% block title %}{{ dataset.name }} — AI Reliability Platform{% endblock %} {% block content %} {% if cases %} {% for c in cases %} {% endfor %}
IDInputExpected OutputCategoryDifficulty
{{ c.id }} {{ c.input_text[:100] }} {{ c.expected_output[:80] }} {{ c.category or "—" }} {{ c.difficulty }}
{% else %}
No test cases in this dataset.
{% endif %} {% endblock %}