{% extends "base.html" %} {% set active_nav = "topics" %} {% block title %}Topics - Distill{% endblock %} {% block content %}

Topics

{{ topics|length }} topics in your library

{% for t in topics %}
{{ t.name }}
{{ t.channel_count }} channels · {{ t.video_count }} videos
{% if t.site_count %}{{ t.site_count }} sites · {% endif %} {% if t.paper_count %}{{ t.paper_count }} papers · {% endif %} {% if t.has_synthesis %}synthesis {% endif %} {% if t.has_report %}report {% endif %} {% if t.has_brief %}brief {% endif %}
{% else %}

Start here

No topics yet

Set up Distill, then preview a source before ingesting into a topic.

  1. distill --cost-mode no-metered init
  2. distill --cost-mode no-metered doctor
  3. distill --cost-mode no-metered papers "topic" -n 5 --preview
  4. distill --cost-mode no-metered latest "topic" -n 5 --preview

These commands refuse API-billed routes. Use paid-ok only when you intend cloud model work.

{% endfor %}
{% endblock %}