{% extends "base.html" %} {% 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 %}

{% set snippet = snippets.get(paper.id, {}) %} {% if snippet and snippet.title_zh %} {{ snippet.title_zh | safe }} {% elif paper.title_zh %} {{ paper.title_zh }} {% else %} {{ paper.title_en }} {% endif %}

👍 {{ paper.upvotes }} {% if distances and paper.arxiv_id in distances %} 🎯 {{ "%.3f"|format(distances[paper.arxiv_id]) }} {% endif %}
{% if snippet and snippet.abstract %}

{{ snippet.abstract | safe }}

{% elif paper.summary and paper.summary.one_line %}

{{ paper.summary.one_line }}

{% elif paper.abstract %}

{{ paper.abstract[:200] }}{% if paper.abstract|length > 200 %}…{% endif %}

{% endif %}
{{ paper.authors|map(attribute='name')|join(', ')|truncate(80) }} {{ paper.paper_date }}
{% for t in paper.tags[:5] %} {{ t.tag }} {% endfor %}
{% endfor %}
{# 分页 #} {% if total_pages > 1 %} {% endif %} {% else %}

没有找到匹配的论文

试试其他关键词或标签

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