{% extends "base.html" %} {% block title %}AgentSwing — runs{% endblock %} {% block subtitle %}{{ runs|length }} run{{ '' if runs|length == 1 else 's' }} in {{ runs_dir }}{% endblock %} {% block content %} {% if not runs %}

No runs yet.

Start one with agentswing run agentswing.yaml — it will appear here as it goes.

{% else %}
{% for r in runs %} {% endfor %}
RunTargetResult ScoreScenariosWhen
{{ r.run_id }} {% if r.active %}
running{% endif %}
{{ r.target or '—' }} {% if r.active %} running {% elif not r.judged %} unjudged {% else %} {{ r.passed }}P / {{ r.failed }}F / {{ r.errored }}E {% endif %} {{ '%.1f'|format(r.mean_score) if r.judged else '—' }} {{ r.total or r.transcripts }} {{ r.generated_at[:19]|replace('T',' ') if r.generated_at else '—' }}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}