{% if error %}

{{ error }}

{% elif no_results %}

No results found for "{{ question }}"

Try rephrasing, or use one of these:

Ask Maude Chat directly about your question Operations Room status and fleet health Governance Constitution and compliance Ecosystem Full system map
{% else %} {# ── Navigation Matches ──────────────────────────────────────── #} {% if nav_matches %}
{% for page in nav_matches %} {{ page.title }} {{ page.desc }} {% endfor %}
{% endif %}
{# ── Left Panel: Department Answer ─────────────────────── #}
{% if answer %}
{{ department }} {{ agent_name }}
{{ answer }}
{% if department %} {% endif %}
{% if also_relevant %}
{% endif %} {% else %} {# No department answer — only show if we also have no nav matches #} {% if not nav_matches %}

No department match.

Ask Maude directly →
{% endif %} {% endif %}
{# ── Right Panel: Related Documents ────────────────────── #}
{% if documents %}
{% for doc in documents %}
{% if doc.extension in ['.pdf'] %} PDF {% elif doc.extension in ['.stp', '.step', '.iges', '.dwg'] %} CAD {% elif doc.extension in ['.xlsx', '.xls'] %} XLS {% elif doc.extension in ['.docx', '.doc'] %} DOC {% else %} FILE {% endif %}
{{ doc.filename }}
{% if doc.site %} {{ doc.site }} {% endif %} {% if doc.share %} {% endif %} {% if doc.parent_doctype %} {{ doc.parent_doctype }}: {{ doc.parent_name }} {% endif %} {% if doc.preview %}
{{ doc.preview }}
{% endif %}
{{ "%.0f"|format(doc.score * 100) }}%
{% endfor %}
{% endif %}
{% endif %}