{% extends "ui/base_ui.html" %} {% block title %}Analytics - ATP Platform{% endblock %} {% block content %}
Platform statistics and agent performance overview.
No runs yet.
{% endif %}| Status | Count | % |
|---|---|---|
| {{ row.status }} | {{ row.count }} | {% if total_runs > 0 %}{{ "%.0f"|format(row.count / total_runs * 100) }}%{% else %}—{% endif %} |
| Agent | Avg Score | Best Score | Runs |
|---|---|---|---|
| {{ agent.agent_name or "unnamed" }} | {% if agent.avg_score is not none %}{{ "%.2f"|format(agent.avg_score) }}{% else %}—{% endif %} | {% if agent.best_score is not none %}{{ "%.2f"|format(agent.best_score) }}{% else %}—{% endif %} | {{ agent.run_count }} |
No completed runs yet.
{% endif %}No activity yet.
{% endif %} {% endblock %}