{% extends "base.html" %} {% set active = "insights" %} {% block title %}Cortex — Insights{% endblock %} {% block content %}

Insights

Run AI-powered analysis to find contradictions, patterns, knowledge gaps, and stale content.

{% if analysis %} {% set contradictions = analysis.get('contradictions', []) %} {% set patterns = analysis.get('patterns', []) %} {% set gaps = analysis.get('gaps', []) %} {% set staleness = analysis.get('staleness', []) %} {% if contradictions %}
Contradictions ({{ contradictions|length }})
{% endif %} {% if patterns %}
Patterns ({{ patterns|length }})
{% endif %} {% if gaps %}
Knowledge Gaps ({{ gaps|length }})
{% endif %} {% if staleness %}
Stale Content ({{ staleness|length }})
{% endif %} {% if not contradictions and not patterns and not gaps and not staleness %}
No notable insights found. Your knowledge base looks consistent.
{% endif %} {% endif %} {% endblock %}