{% if runs %}
| run | mode | status | model | min | brief tok | input | cache-read | output | cost | |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ r.run_id }} | {{ r.mode }} | {{ r.status }} | {{ r.harness }}{% if r.model %}:{{ r.model }}{% endif %}{% if r.host %} @{{ r.host }}{% endif %}{% if r.mode == 'review' and r.env_snapshot.get('writer_model') %} reviewed by {{ r.model }}, one above {{ r.env_snapshot.writer_model }}{% endif %} | {% if r.status == 'running' %}{{ live_clock(r) }}{% else %}{{ '%.0f' % r.elapsed_minutes() }}{% endif %} | {{ '{:,}'.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 %} | open run{% if r.error %} ยท error{% endif %} |