{% for s in sessions %} {% set d_status = 'queued' if s.status == 'created' else 'running' if s.status == 'running' else 'failed' if s.status == 'error' else 'success' if s.status in ('stopped', 'idle') and s.is_task_successful == 1 else 'failed' if s.status in ('stopped', 'idle') and s.is_task_successful == 0 else 'stopped' %} {{ d_status }} {{ s.title or s.task[:40] + '...' if s.task and s.task|length > 40 else s.task or '—' }} {{ s.id[:8] }}... {% if s.profile_id %} {{ s.profile_id[:8] }}... {% else %} — {% endif %} {{ format_relative(s.created_at) }} {{ format_duration(s.created_at, s.updated_at, s.status) }} ${{ s.total_cost_usd | usd }}{{ model_provider(s.model) }}: ${{ s.llm_cost_usd | usd4 }}
CapSolver: ${{ s.capsolver_cost_usd | usd4 }}
{% endfor %}