{% extends "base.html" %} {% block title %}Runs{% endblock %} {% block head %} {% endblock %} {% block body %}
Every worker, review, persona and comparison run, with what it cost.
| task | run | mode | status | location | model | min | brief tok | input | cache-read | output | cost |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ 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 | |||||||||||