{% extends "base.html" %} {% block title %}{{ project.name }} — evalkit{% endblock %} {% block content %}
Projects / {{ project.name }}
{{ project.description }}
{% endif %}| ID | Suite | Status | Score | Date | ||
|---|---|---|---|---|---|---|
| {% if ev.status.value == 'complete' %} {% endif %} | #{{ ev.id }} | {{ ev.suite_name }} | {{ ev.status.value }} | {% if ev.average_score is not none %} {% set score = (ev.average_score * 100) | int %} {{ score }}% {% else %}—{% endif %} | {{ ev.created_at.strftime('%Y-%m-%d %H:%M') }} | View |
🏃
No evaluations yet
Use the API or CLI to run your first evaluation.
curl -X POST http://localhost:8000/api/v1/evaluate \
-H "Content-Type: application/json" \
-d '{
"project_id": {{ project.id }},
"suite": "rag_qa",
"judge_provider": "openai",
"test_cases": [
{"question": "...", "context": ["..."], "answer": "..."}
]
}'