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

{{ query }}

{{ score }} score {{ confidence }} confidence {{ source_diversity }} diversity {{ page_count }} sources {{ chunk_count }} chunks
{% if export_md_url %} {% endif %}
{% if synthesis == "heuristic" %}
Degraded report. Automatic synthesis failed for this run, so the sections below show raw source material instead of an analysed report. Re-run the research to try again.
{% endif %} {% if summary %}

{{ "Report" if synthesis == "agents" else "Summary" }}

{{ link_citations(render_content(summary), sources|length) }}
{% endif %} {% if findings %}

Findings

{% for finding in findings %}
{{ finding.title }} {{ finding.confidence }}
{{ link_citations(finding.detail|e, sources|length) }}
{% if finding.citations %}
{% for cite in finding.citations %} {% if cite is number and cite >= 1 and cite <= sources|length %} [{{ cite }}] {% endif %} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if sources %}

Sources

    {% for source in sources %}
  1. {{ source.title or source.url }} {{ source.source }}
  2. {% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}