{% extends "base.html" %} {% block title %}deepdive-search 首页{% endblock %} {% block content %}

DeepDive Search

输入技术领域与描述文本,自动生成符合 MECE 原则的布尔搜索逻辑,支持多平台输出。

{% if recent_records %}

最近搜索

{% for record in recent_records %}
{{ record.domain }}
{{ record.created_at[:10] }}
{{ record.bool_result.expression.raw_expression[:120] }}{% if record.bool_result.expression.raw_expression|length > 120 %}...{% endif %}
{% endfor %}
{% endif %} {% if total_count > 0 %}
查看全部 {{ total_count }} 条记录 →
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}