{% extends "base.html" %} {% block title %}Pick Papers You Like — Research Intelligence{% endblock %} {% block content %} {% if papers %}
{% for p in papers %}
{% if p.domain == 'aiml' %} AI/ML {% elif p.domain == 'security' %} Security {% endif %}
{{ p.title }}
{% if p.summary %}
{{ p.summary[:150] }}{% if p.summary | length > 150 %}…{% endif %}
{% endif %}
{% endfor %}
0 rated
{% else %}

No seed papers available

Run a pipeline first to populate papers, then come back to seed your preferences.

Go to Dashboard
{% endif %} {% endblock %}