{% extends "base.html" %} {% block title %}Cost — didiAI Dashboard{% endblock %} {% block content %}
Estimated spend across search + LLM providers. Real billing lives with each provider.
Last 24h
${{ "%.4f"|format(cost_24h) }}
estimated
Last 7 days
${{ "%.2f"|format(cost_7d) }}
rolling
Last 30 days
${{ "%.2f"|format(cost_30d) }}
rolling
Projected monthly
${{ "%.2f"|format(projected_monthly) }}
24h burn × 30
| Provider | Requests | Cost |
|---|---|---|
| {{ row.provider }} | {{ row.count }} | ${{ "%.4f"|format(row.cost) }} |
| No data | ||
| Tier | Requests | Cost |
|---|---|---|
| {{ row.tier }} | {{ row.count }} | ${{ "%.4f"|format(row.cost) }} |
| No data | ||
| Time | Tier | Query | Cost |
|---|---|---|---|
| {{ item.created_at.strftime('%m-%d %H:%M') if item.created_at else '—' }} | {{ item.tier }} | {{ item.claim or item.query or '—' }} | ${{ "%.4f"|format(item.cost_usd|float) }} |
| No data | |||