{% extends "base.html" %} {% from "_macros.html" import best_badge, best_badge_dual, score_view_toggle, agent_chip, model_chip, run_status %} {% block title %}{{ task }} ยท SForge{% endblock %} {% block content %} {% set any_rescaled = runs|selectattr("has_rescaled")|list|length > 0 %}
← runs / {{ task }}
{% if any_rescaled %}{{ score_view_toggle() }}{% endif %}
{% if runs %}
{% for r in runs %} {% endfor %}
Run Agent Model Best Rounds Runtime Status
{{ r.run_id }} {{ agent_chip(r.agent) }} {{ model_chip(r.model) }} {{ best_badge_dual(r) }} {{ r.total_rounds }} {{ format_duration(r.runtime_seconds) }} {{ run_status(r) }}
{% else %}
No runs for this task.
{% endif %} {% endblock %}