{% comment %} Tools Called card - shows actual tool calls and subagents per case with expandable details. Variables: cases (required) - list of case display dicts with actual_tool_calls / actual_subagents_used {% endcomment %} Tools Called

Click a row to expand tool call details.

{% if cases %}
{% for c in cases %} {% with idx=forloop.counter0 %}
{{ c.identifier }} {{ c.description }} {{ c.category }}
{% if c.actual_subagents_used %}

Subagents

{% for sa in c.actual_subagents_used %}

{{ sa }}

{% endfor %}
{% endif %} {% if c.actual_tool_calls %} {% for tc in c.actual_tool_calls %}

{{ tc.tool_name }}

{% if tc.args %}

params: {{ tc.args }}

{% endif %}
{% endfor %} {% endif %} {% if not c.actual_tool_calls and not c.actual_subagents_used %}

No tool calls recorded.

{% endif %}
{% endwith %} {% endfor %}
{% else %}

No case data available.

{% endif %}