{% extends "base.html" %} {% block title %}Thought Stream{% endblock %} {% block extra_styles %} {% endblock %} {% block content %}
Thought Stream
Inner monologue — always thinking, always pondering.
// INNER THOUGHTS {{ thoughts | length }} thoughts
{% if thoughts %} {% for thought in thoughts %}
{{ thought.seed_type }} {{ thought.created_at[:19] }} {% if thought.parent_id %} chain {% endif %}
{{ thought.content | e }}
{% endfor %} {% else %}
No thoughts generated yet. The thinking thread will begin shortly after startup.
{% endif %}
{% endblock %}