{% extends "base.html" %} {% block title %}Providers — didiAI Dashboard{% endblock %} {% block content %}
Live quota, billing, and health status — refreshed from each provider's API
| Provider | Plan | Quota | Rate Limit | Status |
|---|---|---|---|---|
| {{ provider.display_name }} | {{ provider.plan_name or '—' }} | {% if provider.quota_limit %} {% if provider.quota_unit == 'usd' %}${% endif %}{{ "%.2f"|format(provider.quota_used or 0) }} / {% if provider.quota_unit == 'usd' %}${% endif %}{{ "%.0f"|format(provider.quota_limit) }} {% else %}—{% endif %} | {{ provider.rate_limit or '—' }} | {% if provider.healthy %} healthy {% else %} down {% endif %} |