| Model |
Provider |
Prompt Tokens |
Completion Tokens |
Cost (USD) |
{% for entry in cost.calls %}
| {{ entry.model }} |
{{ entry.provider }} |
{{ entry.prompt_tokens }} |
{{ entry.completion_tokens }} |
${{ "%.4f"|format(entry.cost) }} |
{% endfor %}
Total: ${{ "%.4f"|format(cost.total) }}
{% if cost.comparison_total %}
Full audit estimate (all top-tier): ${{ "%.4f"|format(cost.comparison_total) }}
{% endif %}
{% if cost.cache_hit_rate is not none %}
Cache hit rate: {{ "%.0f"|format(cost.cache_hit_rate * 100) }}%, saved ~${{ "%.4f"|format(cost.cache_saved) }}
{% endif %}