{% 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 summary %}

Summary

{{ render_content(summary) }}
{% endif %} {% if findings %}

Findings

{% for finding in findings %}
{{ finding.title }} {{ finding.confidence }}
{{ finding.detail }}
{% endfor %}
{% endif %} {% if gaps %}

Open gaps

    {% for gap in gaps %}
  • {{ gap }}
  • {% 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 %}