{% extends "base.html" %} {% from "macros.html" import render_field %} {% block title %}Session Overview{% endblock %} {% block content_title %}Session Overview{% endblock %} {% block content_description %}An overview of the chat session.{% endblock %} {% block content %}

Chat Session Details

Session Information

Session ID: {{ chat_session.session_id }}

User: {{ chat_session.user.user_name if chat_session.user else 'Anonymous' }}

Start: {{ chat_session.session_start | to_local_time(chat_session.timezone) }}

End: {{ chat_session.session_end | to_local_time(chat_session.timezone) if chat_session.session_end else 'Ongoing' }}

Interactions

{% for interaction in interactions %}

Detailed Question:

{{ interaction.detailed_question }}

Answer:
{{ interaction.answer | safe }}
{% if embeddings_dict.get(interaction.id) %}
Related Documents:
    {% for embedding in embeddings_dict[interaction.id] %}
  • {% if embedding.url %} {{ embedding.url }} {% else %} {{ embedding.file_name }} {% endif %}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}