{% extends "base.html" %} {% block title %}Runs{% endblock %} {% block head %} {% endblock %} {% block body %}

Runs

Every worker, review, persona and comparison run, with what it cost.

{% if archive_warning %}
{{ archive_warning }}
{% endif %}
{{ totals.runs }}
runs
${{ '%.2f' % totals.cost_usd }}
total cost
{{ '{:,}'.format(totals.input_tokens) }}
input tokens
{{ '{:,}'.format(totals.cache_read_input_tokens) }}
cache reads
{% for r in runs %} {% else %}{% endfor %}
taskrunmodestatuslocationmodelminbrief tokinputcache-readoutputcost
{{ r.task_id }}{{ r.run_id }}{{ r.mode }}{{ r.status }}{{ r.execution_location }}{{ r.harness }}{% if r.model %}:{{ r.model }}{% endif %} {{ '%.0f' % r.elapsed_minutes() }}{{ '{:,}'.format(r.brief_tokens) }}{{ r.usage.get('input_tokens', '') }}{{ r.usage.get('cache_read_input_tokens', '') }}{{ r.usage.get('output_tokens', '') }}{% if r.cost_usd is not none %}${{ '%.2f' % r.cost_usd }}{% endif %}
no runs yet
Scheduler log
{% for e in events %}{{ e.at[11:19] }} {{ e.msg }} {% else %}nothing yet{% endfor %}
{% endblock %}