{% extends "base.html" %} {% block title %}Overview - Janus{% endblock %} {% block overview_active %}bg-gray-700 text-white{% endblock %} {% block content %}

Overview

Total Requests

{{ stats.total_requests }}

Input Tokens

{{ "{:,}".format(stats.total_input_tokens) }}

Output Tokens

{{ "{:,}".format(stats.total_output_tokens) }}

Enabled Providers

{{ provider_count }}

Today's Spend

${{ "%.4f"|format(today_cost) }}
{% if global_budget %}
${{ "%.2f"|format(global_budget.today_spend) }} / ${{ "%.2f"|format(global_budget.daily_limit) }} ({{ "%.0f"|format(global_budget.pct_used) }}%)
{% else %}

No global budget set. Create one

{% endif %}

Active Combos

{% if combos %}
{% for name, models in combos.items() %}
{{ name }} {{ models|length }} models
{% for model in models %} {{ model }} {% if not loop.last %} {% endif %} {% endfor %}
{% endfor %}
{% else %}

No combos configured.

{% endif %}
{% endblock %}