{% set active_page = "history" %} {% extends "base.html" %} {% block title %}History{% endblock %} {% block content %}
| Session | Started | Duration | Instances | Tool Calls | Tokens Saved | Efficiency |
|---|---|---|---|---|---|---|
| {{ cs.id[:20] }} | {{ cs.started_at[:16]|replace("T", " ") }} | {{ cs.duration }} | {{ cs.instances_spawned }} | {{ "{:,}".format(cs.total_tool_calls) }} | {{ "{:,}".format(cs.total_tokens_avoided) }} | {% if cs.reduction_pct > 0 %} {{ cs.reduction_pct }}% {% else %} - {% endif %} |
| Date | Repository | Sessions | Tool Calls | Symbols | Sections | Tokens Saved |
|---|---|---|---|---|---|---|
| {{ row.date }} | {{ row.repo }} | {{ row.sessions }} | {{ "{:,}".format(row.tool_calls) }} | {{ "{:,}".format(row.symbols_retrieved) }} | {{ "{:,}".format(row.sections_retrieved) }} | {{ "{:,}".format(row.tokens_avoided) }} |