{% if item.suggestions %}
{% for s in item.suggestions %}
- {{ loop.index }}. {{ s }}
{% endfor %}
{% else %}
No suggestions returned
{% endif %}
{% if item.failed_checks %}
{% for fc in item.failed_checks %}
✗ {{ fc.name }}: {{ fc.detail }}
{% endfor %}
{% endif %}
{% if item.relevance_score is not none %}
LLM Scores:
Relevance: {{ item.relevance_score }}/3
Diversity: {{ item.diversity_score }}/3
{% if item.flagged_suggestions %}
Flagged: {{ item.flagged_suggestions | join(', ') }}
{% endif %}
{% if item.llm_reasoning %}
{{ item.llm_reasoning }}
{% endif %}
{% endif %}