{% extends "base.html" %} {% block content %}

AI Execution Log

Tracked model calls and usage metrics for this account.

Total Runs

{{ stats.total_runs }}

OK

{{ stats.total_ok }}

Failed

{{ stats.total_failed }}

Success Rate

{{ stats.success_rate }}%

24h Runs

{{ stats.last_24h_runs }}

24h Failed

{{ stats.last_24h_failed }}

7d Runs

{{ stats.last_7d_runs }}

Avg Duration

{{ stats.avg_duration_ms }}ms

Prompt Chars

{{ stats.total_prompt_chars }}

Response Chars

{{ stats.total_response_chars }}

Avg Prompt

{{ stats.avg_prompt_chars }}

Avg Response

{{ stats.avg_response_chars }}

By Operation

{% for row in operation_breakdown %} {% empty %} {% endfor %}
OperationTotalOKFailed
{{ row.operation|default:"(none)" }} {{ row.total }} {{ row.ok }} {{ row.failed }}
No runs yet.

By Model

{% for row in model_breakdown %} {% empty %} {% endfor %}
ModelTotalOKFailed
{{ row.model|default:"(none)" }} {{ row.total }} {{ row.ok }} {{ row.failed }}
No runs yet.

Recent Runs

{% for run in runs %} {% empty %} {% endfor %}
Started Status Operation Model Messages Prompt Response Duration Error
{{ run.started_at }} {{ run.status }} {{ run.operation|default:"-" }} {{ run.model|default:"-" }} {{ run.message_count }} {{ run.prompt_chars }} {{ run.response_chars }} {% if run.duration_ms %}{{ run.duration_ms }}ms{% else %}-{% endif %} {{ run.error|default:"-" }}
No runs yet.
{% endblock %}