{% extends "base.html" %} {% block title %}任务总览{% endblock %} {% block content %}
{% for metric in hero_metrics %}
{{ metric.label }}
{{ metric.value }}
{% endfor %}

知识库配置

查看规则树、知识源和切片策略。

文件中心

上传资料、执行入库、查看状态。

审核工作台

输入问题、选择文档、查看结果。

审计日志

查看每次执行的输入、输出和引用。

已配置审核场景

保留现有场景列表,直接进入使用。

{% if scenario_issues %}
配置异常
{% for issue in scenario_issues %}
{{ issue.file_name }}:{{ issue.message }}
{% endfor %}
{% endif %}
{% for scenario in scenarios %}
{{ scenario.id }} RAG {% if scenario.rag.enabled %}开启{% else %}关闭{% endif %}

{{ scenario.name }}

{{ scenario.description }}

适用题型: {% if scenario.applicable_questions %} {{ scenario.applicable_questions|join:"、" }} {% else %} 暂未配置 {% endif %}

{% empty %}
暂无可用场景,请检查 `configs/` 目录和 YAML 配置内容。
{% endfor %}
{% endblock %}