{% extends "base.html" %} {% block title %}AI Diagnostics{% endblock %} {% block page_title %}AI Diagnostics{% endblock %} {% block content %}
Back to AI Settings

In-memory event log (last 200 events, cleared on restart). Newest first.

{% if events %}
{% for ev in events %} {% endfor %}
Time (UTC) Event Detail
{{ ev.ts }} {% if ev.type == 'tool_call_fallback_parsed' %} {{ ev.type }} {% elif ev.type == 'tool_call_unparseable' %} {{ ev.type }} {% else %} {{ ev.type }} {% endif %}
{{ ev.detail }}
{% if ev.extra %}
Extra
{{ ev.extra | tojson(indent=2) }}
{% endif %}
{% else %}
No diagnostic events recorded.
{% endif %}
{% endblock %}