{% extends "base.html" %} {% from "partials/_inventory_states.html" import empty_state, error_state %} {% block title %}Runs · FreeWeight{% endblock %} {% block content %}

Runs

{% include "partials/_csrf.html" %}
Start a run

{% if models %} {% else %} No models discovered yet — refresh from the provider first. {% endif %}

{% if error %} {% endif %} {% if runs %} {% for run in runs %} {% endfor %}
{{ runs | length }} run(s), newest first.
Run Status Suite Model Label Created Completed
{{ run.id[:10] }}… {{ run.status }} {{ run.suite_key }} {{ run.suite_version }} {{ run.model_canonical_id }} {{ run.label or "—" }} {{ run.created_at | timestamp }} {{ run.completed_at | timestamp }}
{% elif not error %} {{ empty_state( "runs", "A run measures one model against one benchmark suite. Start one with the form above, or run freeweight run start --suite native.echo, which is the self-test suite that exercises the whole engine without needing a real model.") }} {% endif %} {% endblock %}