{% extends "base.html" %} {% block title %}View Data Capsule{% endblock %} {% block content_title %}Data Capsule Details{% endblock %} {% block content_description %}View information about this EvAI Data Capsule and its content.{% endblock %} {% block content %}

Basis Informatie

ID {{ data_capsule.id }}
Type {{ data_capsule.type }}
Type Version {{ data_capsule.type_version }}
Created At {{ data_capsule.created_at }}
Chat Session ID {{ data_capsule.chat_session_id }}

Chat Sessie Informatie

Session ID {{ chat_session.session_id }}
Session Start {{ chat_session.session_start }}
Session End {{ chat_session.session_end }}
{% if data_capsule.configuration %}

Configuratie

{{ data_capsule.configuration | tojson(indent=2) }}
{% endif %} {% if data_capsule.data %}

Data

{{ data_capsule.data | tojson(indent=2) }}
{% endif %}
Back to Data Capsules View Chat Session
{% endblock %}