{% if prompt %}
{{ prompt.prompt_type | replace('_', ' ') }}
{{ prompt.timestamp.strftime('%H:%M:%S') if prompt.timestamp else '' }}
{% if prompt.prompt_type == 'discovery_qa' %}
Answer the discovery questions below:
{% set questions = prompt.message.split('\n')[1:] %} {% for q in questions if q.strip() and q.strip()[0].isdigit() %}
{{ q.strip() }}
{% endfor %}
{% elif prompt.prompt_type in ['multiline_input', 'text_input_prompt'] %}
{{ prompt.message }}
{% else %}
{{ prompt.message[:1000] }}{% if prompt.message|length > 1000 %}...{% endif %}
{% for option in prompt.options %} {% endfor %}
{% endif %} {% if prompt.artifacts %}
Relevant Artifacts
{% for artifact in prompt.artifacts %} {{ artifact }} {% endfor %}
{% endif %}
{% else %}
No active prompt
{% endif %}