{% extends "base.html" %} {% load static %} {% block title %}审核智能体 - DEMO-AGENT V2{% endblock %} {% block body_class %}app-body{% endblock %} {% block content %}
{% if current_conversation %}

审核智能体

{{ current_conversation.title|default:"新对话" }}

最后更新 {{ current_conversation.updated_at|date:"Y-m-d H:i" }}
{% for message in messages %}
{% if message.role == "assistant" %}AI{% else %}{{ request.user.username|slice:":1"|upper }}{% endif %}

{{ message.content|linebreaksbr }}

{% endfor %} {% else %}

审核智能体

开始新的审核对话

输入资料疑点、法规条款、说明书问题或风险项,系统会为你保留真实会话记录。

{% endif %}
{% csrf_token %} {% if current_conversation %} {% endif %}
法规核查 说明书审核 风险识别
{% endblock %} {% block scripts %} {% endblock %}