{% set kind_colors = { 'search': 'from-sky-500 to-indigo-600', 'llm': 'from-fuchsia-500 to-purple-600', 'internal': 'from-emerald-500 to-teal-600' } %}
{{ provider.display_name[:2]|upper }}

{{ provider.display_name }}

{{ provider.kind }}{% if provider.plan_name %} · {{ provider.plan_name }}{% endif %}

{% if provider.healthy %} Healthy {% else %} Down {% endif %}
{% 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) }} {% if provider.quota_unit != 'usd' %}{{ provider.quota_unit }}{% endif %} {{ provider.quota_percent_used or 0 }}%
{% include "partials/quota_bar.html" %}
{% elif provider.kind == 'internal' or provider.kind == 'llm' %}
{{ provider.plan_name or 'Self-hosted' }}
{% endif %}
{% if provider.rate_limit %}⚡ {{ provider.rate_limit }}{% endif %} {% if provider.plan_price_monthly %}💰 ${{ "%.0f"|format(provider.plan_price_monthly) }}/mo{% endif %} {% if provider.message %}⚠ {{ provider.message }}{% endif %}