{% if sessions %} {% for s in sessions %} {{ s.session_id_short }} {{ s.agent_name }} {{ s.start_dt }} {{ s.duration_str }} {% if s.llm_count > 0 %} {{ s.llm_count }} {% else %} {% endif %} {% if s.tool_count > 0 %} {{ s.tool_count }} {% else %} {% endif %} ${{ "%.6f"|format(s.total_cost_usd) }} {% if s.status == "success" %} success {% elif s.status == "error" %} error {% else %} running {% endif %} {% endfor %} {% else %}

No sessions found. Run python examples/basic_usage.py to get started.

{% endif %}