{% extends "base.html" %} {% block title %}Memory — IRC Bot Portal{% endblock %} {% block content %}

Conversation Memory

Total Exchanges
{{ stats.total_exchanges }}
Database Size
{{ (stats.total_size_bytes / 1024)|round(1) }} KB

Browse History

{% if selected_chan %} {% endif %}
{% if selected_chan and selected_nick and exchanges %}
{% for ex in exchanges %}
{{ ex.timestamp }}
{{ selected_nick }}: {{ ex.user }}
bot: {{ ex.assistant }}
{% endfor %}
{% elif selected_chan and selected_nick %}

No exchanges found.

{% endif %}

Clear History

{% if selected_chan and selected_nick %}
{% endif %} {% if selected_chan %}
{% endif %}
{% endblock %}