{% extends "base.html" %} {% block content %}
Question: {{ interaction.question }}
Answer: {{ interaction.answer }}
Algorithm Used: fingerprint {{ interaction.algorithm_used }}
Appreciation: {{ 'thumb_up' if interaction.appreciation == 1 else 'thumb_down' }}
Embeddings: {% if interaction.embeddings %} {% for embedding in interaction.embeddings %} {{ embedding.embedding_id }} {% endfor %} {% else %} None {% endif %}