{% extends "base.html" %}
{% block title %}Sessions · {{ current_project.name }} — Bento{% endblock %}
{% block content %}
Sessions {{ sessions|length }}
| Session | Model | Version | Status | Tokens | Cost | Started | Duration |
|---|---|---|---|---|---|---|---|
|
{% set av = agent_avatar(s.agent_slug or '?') %}
{{ av.abbr }}
{{ s.agent_name or '—' }}
{{ session_title(s) }}
|
{% if s.model %}{{ s.model }}{% else %}—{% endif %}
|
{% if s.version_pin %}{{ s.version_pin }}{% else %}—{% endif %}
|
{% if s.status == 'running' %} {% elif s.reason == 'errored' %} {% elif s.reason == 'cancelled' %} {% else %} {% endif %} | {{ fmt_tokens(s.tokens_in) }} in / {{ fmt_tokens(s.tokens_out) }} out | {{ fmt_cost(s.cost_usd) }} | {{ fmt_duration_ms(s.duration_ms) }} |
No sessions in {{ current_project.name }} yet.
{% endif %} {% endblock %}