{% extends "base.html" %} {% block title %}AI History{% endblock %} {% block page_title %}AI History{% endblock %} {% block topbar_actions %} Open Chat {% endblock %} {% block content %}
{% if insights.items %} {% for item in insights.items %} {% endfor %}
Date Type Content Tokens
{{ item.created_at.strftime('%b %d, %H:%M') }} {{ item.insight_type | replace('_',' ') | title }} {% if item.prompt_summary and item.insight_type == 'chat_response' %}
{{ item.prompt_summary }}
{% endif %}
{{ item.content | truncate(180) }}
{{ item.tokens_used or 'โ€”' }}
{% if insights.pages > 1 %}
Page {{ insights.page }} of {{ insights.pages }}  ยท  {{ insights.total }} entries
{% if insights.has_prev %} โ† Prev {% endif %} {% if insights.has_next %} Next โ†’ {% endif %}
{% endif %} {% else %}

No AI history yet. Start a conversation.

Open Chat
{% endif %}
{% endblock %}