{% extends "base.html" %} {% 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, id, question_at, specialist_arguments, specialist_results, specialist_name, specialist_type in interactions %}

{% if specialist_arguments %}
Specialist Arguments:
{{ specialist_arguments | tojson(indent=2) }}
{% endif %} {% if specialist_results %}
Specialist Results:
{{ specialist_results | tojson(indent=2) }}
{% endif %} {% if embeddings_dict.get(id) %}
Related Documents:
    {% for embedding in embeddings_dict[id] %}
  • {% if embedding.url %} link {{ embedding.url }} {% else %} description {{ embedding.object_name }} {% endif %}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}