{% extends "base.html" %}{% from "partials/paper_card.html" import render_card %} {% block title %}{{ page_title }} — HF Daily Papers{% endblock %} {% block content %}
{# 搜索表单 #}
{% if tag %} {% endif %} {# 模式切换 #} {% if chroma_enabled %}
{% endif %}
{# 标签筛选 #} {% if all_tags %}
标签: 全部 {% for t in all_tags %} {{ t }} {% endfor %}
{% endif %} {% if query or tag %} {# 搜索结果元信息 #}
找到 {{ total }} 条结果{% if mode == 'semantic' %}(语义模式){% endif %}
{% if results %}
{% for paper in results %} {{ render_card(paper, snippets=snippets, distances=distances, variant="search") }} {% endfor %}
{# 分页 #} {% if total_pages > 1 %} {% endif %} {% else %}

没有找到匹配的论文

试试其他关键词或标签

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