{% extends "base.html" %} {% block content %}

AI Interactions

Start AI Chat Advanced Search
{% if filters.search or filters.category or filters.tag %}
Active Filters:
{% if filters.search %} Search: "{{ filters.search }}" {% endif %} {% if filters.category %} Category: {{ filters.category|title }} {% endif %} {% if filters.tag %} Tag: {{ filters.tag }} {% endif %} Clear All
{% endif %} {% if thoughts %}
Found {{ total_thoughts }} thought{{ 's' if total_thoughts != 1 else '' }}
Page {{ current_page }} of {{ total_pages }}
{% for thought in thoughts %} {% endfor %}
# Content Category Emotion Sentiment Importance Created
{{ ((current_page - 1) * 20) + loop.index }} {% if thought.tags %}
{% for tag in thought.tags %} # {{ tag }} {% endfor %}
{% endif %}
{% if thought.category == 'user-input' %}👤{% endif %} {% if thought.category == 'ai-response' %}🤖{% endif %} {% if thought.category == 'conversation' %}💬{% endif %} {% if thought.category == 'reflection' %}🤔{% endif %} {% if thought.category == 'perception' %}👁️{% endif %} {% if thought.category == 'decision' %}⚖️{% endif %} {% if thought.category == 'observation' %}🔍{% endif %} {% if thought.category == 'idea' %}💡{% endif %} {% if thought.category == 'question' %}❓{% endif %} {{ thought.category|title }} {% if thought.emotion %} {% if thought.emotion == 'happy' %}�{% endif %} {% if thought.emotion == 'excited' %}🎉{% endif %} {% if thought.emotion == 'confident' %}💪{% endif %} {% if thought.emotion == 'calm' %}😌{% endif %} {% if thought.emotion == 'neutral' %}😐{% endif %} {% if thought.emotion == 'confused' %}😕{% endif %} {% if thought.emotion == 'anxious' %}😰{% endif %} {% if thought.emotion == 'frustrated' %}😤{% endif %} {% if thought.emotion == 'sad' %}😔{% endif %} {% if thought.emotion == 'positive' %}😊{% endif %} {% if thought.emotion == 'negative' %}😔{% endif %} {% if thought.emotion == 'curious' %}🤔{% endif %} {{ thought.emotion|title }} {% else %} - {% endif %} {% if thought.sentiment_score %} {{ thought.sentiment_score|round(2) }} {% else %} N/A {% endif %} {% if thought.importance %}
{% set importance_class = 'bg-info' %} {% if thought.importance >= 0.7 %} {% set importance_class = 'bg-danger' %} {% elif thought.importance >= 0.4 %} {% set importance_class = 'bg-warning' %} {% endif %}
{{ thought.importance|round(1) }}
{% else %} - {% endif %}
{{ thought.created_at.strftime('%m/%d %H:%M') if thought.created_at else thought.timestamp.strftime('%m/%d %H:%M') }}
{% if total_pages > 1 %} {% endif %}
{% else %}

No AI interactions found

{% if filters.search or filters.category or filters.tag %}

Try adjusting your search criteria

View All AI Interactions {% else %}

Start chatting with AI to begin logging interactions

Start AI Chat {% endif %}
{% endif %} {% endblock %}