{% extends "base.html" %} {% block title %}Datasets — AI Reliability Platform{% endblock %} {% block content %} {% if datasets %} {% for d in datasets %} {% endfor %}
IDNameDescriptionCreated
{{ d.id }} {{ d.name }} {{ d.description or "—" }} {{ d.created_at.strftime("%Y-%m-%d %H:%M") }} View
{% else %}
No datasets yet. Create one via the API:
curl -X POST http://localhost:8000/api/v1/eval/datasets \
  -H "Content-Type: application/json" \
  -d '{"name": "Email Classification", "description": "Test email classification prompts"}'
{% endif %} {% endblock %}