{# pages/ai/dashboard.html — AI Operations Dashboard #} {% extends "base.html" %} {% block title %}{{ title | default("AI Dashboard") }}{% endblock %} {% block content %}
{% for stat in agent_stats %}
smart_toy
{{ stat.name }}
{{ stat.total_runs | default(0) }}
runs today
Tokens: {{ stat.total_tokens | default(0) }} · Cost: ${{ "%.4f" | format(stat.total_cost | default(0)) }}
Success: {{ stat.success_rate | default(0) }}%
{% endfor %}
build

Available Tools

Tools bound to AI agents

Loading tools...

chat

Quick Chat

Send a message to an agent

{% endblock %}