{% extends "base.html" %} {% block title %}Session {{ session.id[:8] }} · OpenBrowse{% endblock %} {% block head %} {% endblock %} {% block content %}
← Sessions {% set ds = display_state(session.status, session.is_task_successful, session.failure_kind) %} {{ ds.label }} {{ session.id }} {{ session.model or '\u2014' }}
Steps
{{ session.step_count or 0 }}
Tokens
{{ '{:,}'.format((session.total_input_tokens or 0) + (session.total_output_tokens or 0)) }}
Cost
${{ session.total_cost_usd | usd }} {{ model_provider(session.model) }}: ${{ session.llm_cost_usd | usd4 }}
CapSolver: ${{ session.capsolver_cost_usd | usd4 }}
Started
{{ format_relative(session.created_at) }}
{% if session.status == 'created' %}
Queued
Waiting for a free browser slot. Up to {{ max_concurrent }} sessions run at once; this one starts automatically when a slot frees up.
{% else %}
Starting browser…
{% endif %}
Live Feed
{% if session.keep_alive %}
{% endif %}
{% endblock %}