{% extends "base.html" %} {% block title %}Dashboard — Research Intelligence{% endblock %} {% block content %} {% if demo_mode %}
Demo Mode — Browsing sample data. Pipelines and scoring are disabled. To run your own instance, deploy locally with Docker Compose and an Anthropic API key.
{% endif %} {% if not has_papers %}
Welcome to Research Intelligence
{% if running_pipelines %} A pipeline is running now. Papers will appear here once scoring finishes. {% else %} Run your first pipeline to start collecting and scoring papers. {% endif %}
{% if not running_pipelines %}
{% if is_pipeline_enabled('aiml') %} {% endif %} {% if is_pipeline_enabled('security') %} {% endif %}
{% endif %} {% if show_seed_banner is defined and show_seed_banner %}
While you wait, pick some papers you like to personalize your feed.
{% endif %}
{% else %} {% if show_seed_banner is defined and show_seed_banner %}
New here?
Pick some papers you like to personalize your feed.
Pick Papers
{% endif %} {% endif %}
AI/ML Papers
{{ aiml_count }}
Security Papers
{{ security_count }}
{% if github_enabled() %}
GitHub Projects
{{ github_count }}
{% endif %} {% if events_enabled() %}
Events Tracked
{{ event_count }}
{% endif %}
Last Run
{{ (last_run or "") | replace("T", " ") or "Never" }}

AI/ML Top 5

AI/ML
{% if aiml_top %} {% for p in aiml_top %} {% set rank = loop.index %} {% include "partials/paper_card.html" %} {% endfor %} {% else %}

No AI/ML papers scored yet.

{% endif %}

Security Top 5

Security
{% if security_top %} {% for p in security_top %} {% set rank = loop.index %} {% include "partials/paper_card.html" %} {% endfor %} {% else %}

No security papers scored yet.

{% endif %}
{% if events_enabled() and events_grouped %}

Events This Week

{% for cat, cat_events in events_grouped.items() %}
{{ cat | title }}
{% for e in cat_events[:5] %}
{% if e.url %}{{ e.title }}{% else %}{{ e.title }}{% endif %}
{{ e.source }}{% if e.event_date %} · {% if cat == 'conference' %}{{ e.event_date | format_date('medium') }}{% else %}{{ e.event_date | format_date('medium') }}{% endif %}{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% if github_enabled() %} {% endif %} {% if events_enabled() %} {% endif %}
{% endblock %}