{% if prompt %}
{{ prompt.prompt_type }}
{{ prompt.timestamp.strftime('%H:%M:%S') if prompt.timestamp else '' }}
{{ prompt.message[:1000] }}{% if prompt.message|length > 1000 %}...{% endif %}
{% for option in prompt.options %} {% endfor %}
{% if prompt.artifacts %}
Relevant Artifacts
{% for artifact in prompt.artifacts %} {{ artifact }} {% endfor %}
{% endif %}
{% else %}
No active prompt
{% endif %}