Tools Timeline

All tool calls across conversations - click a point to see details

Total Calls

{{ timeline.total_invocations }}

Tools Used

{{ timeline.tool_counts|length }}

Total Tokens

{{ timeline.total_tokens|format_compact }}

Est. Cost

${{ "%.4f"|format(timeline.total_cost) }}

{% for tool_name, count in timeline.tool_counts.items()|sort(attribute='1', reverse=true) %}
{{ tool_name }} ({{ count }})
{% endfor %}
{% if timeline.datasets %}
Zoom into time range:
{% for inv in timeline.invocations|reverse %} {% endfor %}
Time Tool Details Tokens Cost
{{ inv.x.split('T')[1][:8] if inv.x and 'T' in inv.x else inv.x }} {{ inv.tool_name }} {{ inv.params_preview|truncate(40) if inv.params_preview else '-' }} {{ inv.y|format_compact }} ${{ "%.4f"|format(inv.cost) }}
{% else %}

No tool invocations found

{% endif %}