{% extends "base.html" %} {% block title %}Chat - MemoryBot{% endblock %} {% block body %}
{% include "partials/sidebar.html" %}
{% for c in conversations %} {% endfor %}

{% if active_profile_id %} {% for p in profiles %} {% if p.id == active_profile_id %}{{ p.name }}{% endif %} {% endfor %} {% else %} Select a profile to start chatting {% endif %}

{% if active_profile_id %}

Responses are based on uploaded memories and personality.

{% endif %}
{% if active_profile_id %}
{% endif %}
{% if messages %} {% for msg in messages %}
{% if msg.role == 'assistant' %}
{{ msg.content }}
{% else %} {{ msg.content }} {% endif %}

{{ msg.created_at.strftime('%H:%M') if msg.created_at else '' }}

{% endfor %} {% else %}

Start a Conversation

{% if active_profile_id %} Say something to get the conversation started. {% else %} Select a memory profile to start chatting. {% endif %}

{% endif %}
{% if active_profile_id %}
{% endif %}
{% endblock %}