{% extends parent %} {% block title %}Tools - Introspect{% endblock %} {% macro tool_qs(name='', failed=filter_failed, session=filter_session, project=filter_project, q=filter_q, page=1) -%} {% if name %}name={{ name }}&{% endif %}{% if failed %}failed=true&{% endif %}{% if session %}session={{ session }}&{% endif %}{% if project %}project={{ project }}&{% endif %}{% if q %}q={{ q }}&{% endif %}page={{ page }} {%- endmacro %} {% block content %}

Tool Calls

All {% for tn in tool_names %} {{ tn[0] }} {{ tn[1] }} {{ '%.0f'|format(tn[2]) }}% {% endfor %}
{% if filter_name %}{% endif %} {% if filter_failed %}{% endif %} {% if filter_session %}{% endif %} {% if filter_project %}{% endif %}
{% if filter_failed %}Show all{% else %}Failed only{% endif %} {% if filter_session %} Session: {{ filter_session[:12] }}... × {% endif %} {% if filter_q %} Search: {{ filter_q[:20] }}{% if filter_q|length > 20 %}...{% endif %} × {% endif %}
{% if stats %}
{{ stats[0] }}
Matching Calls
{{ stats[1] }}
Failed
{% endif %}
{% for tc in tool_calls %} {% endfor %}
Session Project Called At Tool Status Description Input Preview Exec Time
{{ (clean_title(tc[7] or '') or (tc[0]|string)[:12] + '...')|truncate(50) }} {{ tc[9] or '' }} {{ tc[1] }} {{ tc[2] or '' }} {% if tc[3] == 'true' %} FAILED {% else %} OK {% endif %} {{ tc[4] or '' }} {{ tc[5] or '' }} {{ tc[6] or '' }}
{% endblock %}