{% extends "base.html" %} {% block title %}Academy Oracle — ICDEV™{% endblock %} {% block content %}
CUI // SP-CTI

🔮 Academy Oracle

5-lens AI prediction engine — learner risk · content quality · skill gap · AADC readiness · staleness

← Academy
{{ stats.total_pending or 0 }}
Pending Predictions
{{ stats.critical or 0 }}
Critical
{{ stats.warning or 0 }}
Warnings
{{ stats.convergence_events or 0 }}
Convergence Events

Predictions ({{ predictions|length }})

{% if predictions %}
{% for p in predictions %}
{{ p.prediction_text }}
{{ p.severity|upper }} {{ p.confidence * 100 | round(0) | int }}% conf
{{ p.lens_name }} {{ p.subject_type }}:{{ p.subject_id }} {{ p.prediction_type }} {{ p.created_at[:10] if p.created_at else '' }}
{% endfor %}
{% else %}
No predictions yet — click Run Oracle to generate the first batch.
{% endif %}

Convergence Events ({{ convergence|length }})

{% if convergence %}
{% for e in convergence %}
{{ e.subject_type }}:{{ e.subject_id }} {{ e.lens_count }} lenses · {{ (e.consensus_score * 100)|round(0)|int }}% consensus
{{ e.summary }}
{% if e.recommended_action %}
→ {{ e.recommended_action }}
{% endif %}
{% endfor %}
{% else %}
No active convergence events.
{% endif %} {% endblock %}