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

{{ total_thoughts }}

Total AI Interactions

{{ today_thoughts }}

Today's AI Interactions

{{ recent_thoughts|length }}

Recent Items
Recent AI Interactions {% if recent_thoughts %} {{ recent_thoughts|length }} {% endif %}
{% if recent_thoughts %}
{% for thought in recent_thoughts %}
{% 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.upper() }} {{ thought.timestamp.strftime('%Y-%m-%d %H:%M') }} {% 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 }} {% endif %} {% if thought.importance %} {{ "%.2f"|format(thought.importance) }} {% endif %}
{% if thought.tags %}
{% for tag in thought.tags %} # {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No AI interactions logged yet

Start chatting with AI to begin monitoring interactions

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