{% extends "base.html" %} {% block title %}Explorer β€” Document Intelligence β€” ICDEVβ„’{% endblock %} {% block content %}
CUI // SP-CTI

πŸ”Ž Buried-Bodies Explorer

KG-driven findings β€” orphans, tribal knowledge, undocumented dependencies, contradictions, superseded docs.

← Back to DIC
{{ findings | selectattr('severity', 'equalto', 'critical') | list | length }}
πŸ”΄ Critical
{{ findings | selectattr('severity', 'equalto', 'high') | list | length }}
🟑 High
{{ findings | selectattr('severity', 'equalto', 'medium') | list | length }}
πŸ”΅ Medium
{{ findings | selectattr('severity', 'equalto', 'low') | list | length }}
βšͺ Low

πŸ•ΈοΈ Corpus Themes β€” GraphRAG community summaries, the themes that span whole documents

{{ themes | map(attribute='themes') | map('length') | sum }} theme(s) Β· {{ themes | length }} collection(s)
{% for group in themes %}
πŸ—‚οΈ {{ group.collection }} Β· {{ group.themes | length }} theme(s)
{% for t in group.themes %}
{{ t.summary }}
{% if t.entities %}
{% for e in t.entities %}{{ e }}{% endfor %}
{% endif %}
{% endfor %}
{% else %}

No themes yet. Themes are built from the knowledge graph nightly (or run python -m tools.knowledge_graph.community_engine --build).

{% endfor %}
{% for f in findings %} {% else %} {% endfor %}
Severity Type Document / Entity Detail Suggested Action Link
{% if f.severity == 'critical' %} πŸ”΄ Critical {% elif f.severity == 'high' %} 🟑 High {% elif f.severity == 'medium' %} πŸ”΅ Medium {% else %} βšͺ Low {% endif %} {{ f.finding_type | replace('_', ' ') | title }} {{ f.title or f.doc_id or f.entity_ref }} {{ f.detail }} {{ f.suggested_action }} {% if f.doc_id %} Open β†’ {% endif %}
No findings yet. Upload documents and build the KG to surface buried bodies.
{% set iqe_canvas = "dic" %} {% set iqe_api_route = "/document-intelligence/api/iqe-query" %} {% set iqe_title = "IQE Query β€” Explorer" %} {% set iqe_examples = [ {"label": "Orphan docs", "query": "foreach d in dic.documents left join dic.versions v on v.doc_id == d.doc_id where v.doc_id is null select d.doc_id, d.title"} ] %} {% include "includes/iqe_query_widget.html" %} {% endblock %}