{% extends "base.html" %} {% block title %}Overview — didiAI Dashboard{% endblock %} {% block content %}

Overview

Live status of search providers, LLMs, and recent activity (last 24h)

Requests (24h)

{{ summary.total }}

Free: {{ summary.by_tier.get('free', 0) }} · Premium: {{ summary.by_tier.get('premium', 0) }}

Avg Response

{{ (summary.avg_duration_ms/1000)|round(1) }}s

{{ summary.avg_duration_ms|int }}ms mean

Error Rate

{{ summary.error_rate }}%

{{ summary.errors }} errors total

Cost (24h)

${{ "%.2f"|format(summary.total_cost) }}

estimated

Providers

{% for provider in providers %} {% include "partials/provider_card.html" %} {% endfor %}
{% endblock %}