{% extends "base.html" %} {% block title %}Chat — {{ role_name }} — InitRunner{% endblock %} {% block content %}
{# Toolbar — must be inside drawer-content for DaisyUI grid layout #}
{% if has_memory %} {% endif %}
{# Status bar #}
{{ model_name }} | 0 in 0 out {% if session_token_budget %} | 0/{{ session_token_budget | int }} (0%) {% endif %}
{# Messages area #}
{% for msg in history %} {% if msg.role == "user" %}
{{ msg.content }}
{% elif msg.role == "assistant" %}
{{ facehash(role_name, 32) }}
{{ msg.content }}
{% endif %} {% endfor %}
{# Attachment chips #} {# Input form #}
{# History drawer sidebar #}

Conversation History

Loading...
{% endblock %}