{% extends "base.html" %} {% block content %}
# | 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 %}
{% else %}
-
{% endif %}
|
{{ thought.created_at.strftime('%m/%d %H:%M') if thought.created_at else thought.timestamp.strftime('%m/%d %H:%M') }} |
Try adjusting your search criteria
View All AI Interactions {% else %}Start chatting with AI to begin logging interactions
Start AI Chat {% endif %}