{% extends "base.html" %} {% block title %}Domain focus — lit-monitor{% endblock %} {% block content %}

Domain focus

Structured focus areas extracted by LLM from config/domain_context.yaml. Used as a ranking signal by the discovery pipeline — confirm an item to up-weight it, reject to drop it from the signal.

{% set any_items = extraction.topics or extraction.methods or extraction.materials or extraction.adjacent_fields or extraction.exclusions %} {% if not any_items %}

No extraction yet. Click Re-analyze to run the LLM.

{% endif %} {% for field, items in extraction.items() %} {% if items %}

{{ field|replace('_', ' ')|capitalize }}

{% endif %} {% endfor %}
{% endblock %}