{% 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 %}
{% if message.role == "assistant" %}
{% else %}

{{ message.content|linebreaksbr }}

{% endif %}
{% endfor %} {% if condition_confirmation %}
AI
{% csrf_token %} 适用条件确认

请确认 {{ condition_confirmation.batch_no }} 的产品类别、注册类型和临床评价路径,确认后我会继续法规核查。

{% for field, config in condition_confirmation.candidates.items %} {% endfor %}

{% endif %} {% else %}

审核智能体

开始新的审核对话

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

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