{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}

🕓 DeepSearch history

Every research run you have started, newest first. Reopen a finished run to read its report again or continue the grounded chat over its sources.

{% if sessions %}
{% for item in sessions %}

{{ item.query or "Untitled research" }}

{{ item.status }}
{% if item.summary %}

{{ item.summary[:220] }}{{ "…" if item.summary|length > 220 else "" }}

{% endif %}
{% if item.score is not none %}{{ item.score }} score{% endif %} {% if item.confidence is not none %}{{ item.confidence }} confidence{% endif %} {{ item.page_count }} sources
{% if item.available %} {{ "Reopen and chat" if item.chat_available else "Open" }} {% else %} Expired {% endif %}
{% endfor %}
{% else %}

No DeepSearch runs yet. Start your first research.

{% endif %}
{% endblock %}