{% extends "base.html" %} {% load static %} {% block title %}知识库管理 - DEMO-AGENT V2{% endblock %} {% block body_class %}app-body{% endblock %} {% block content %}

知识库管理

知识库管理

管理当前账号所有对话可调用的法规、制度、模板和审查依据。

{{ knowledge_base.status.label }} 返回对话

知识库材料列表

{% for document in knowledge_base.managed_documents %} {% empty %} {% endfor %}
状态 材料名称 文件名 大小 入库状态 更新时间 操作
{% if document.is_active %}启用{% else %}停用{% endif %} {{ document.display_name }} {{ document.original_name }} {{ document.file_size }} bytes {{ document.indexed_label }} {{ document.updated_at|slice:":19" }}
当前知识库暂无材料

内置法规材料

{% for source in knowledge_base.sources %} {% empty %} {% endfor %}
状态 文件 类型 大小 索引 操作
{% if source.supported %}可解析{% else %}暂不支持{% endif %} {{ source.relative_path }} {{ source.suffix }} {{ source.size }} bytes {{ source.indexed_label }}
暂无法规材料
{% endblock %} {% block scripts %} {% endblock %}