{% extends "base.html" %} {% block title %}Review {{ review_id[:20] }} — dvad{% endblock %} {% block content %} {% if status == 'running' %} {# ── Progress View ───────────────────────────────────────────────────── #}
| Step | Model | Est. Input Tokens | Est. Output Tokens | Est. Cost (USD) |
|---|---|---|---|---|
| {{ row.step }} | {{ row.model }} | {{ "{:,}".format(row.est_input_tokens) }} | {{ "{:,}".format(row.est_output_tokens) }} | ${{ "%.4f"|format(row.est_cost_usd) }} |
| Estimated Total | ${{ "%.4f"|format(ns.total) }} | |||
{% if review_mode == 'integration' %} This remediation plan details all accepted findings. Use it as a prompt alongside your source files to implement the changes. {% elif review_mode == 'code' %} The revised file incorporates all accepted findings. Download it or the diff patch to apply changes. {% else %} This revision incorporates all accepted findings. Use it as a prompt alongside your source files to implement the changes. {% endif %} {% if revision_stale %} Findings have changed since this revision was generated — regenerate before using. {% endif %}
{% endif %} {% endif %} {% endif %} {% endblock %} {% block scripts %} {% if status == 'running' %} {% endif %} {% endblock %}