feat: 打通Word导出文件生成与下载闭环

This commit is contained in:
2026-06-04 02:28:42 +08:00
parent e81f0f891e
commit 0250bd360a
5 changed files with 387 additions and 1 deletions

View File

@@ -10,4 +10,5 @@ urlpatterns = [
path("", views.index, name="index"),
path("<str:conversation_id>/", views.detail, name="detail"),
path("<str:conversation_id>/upload/", views.upload_documents, name="upload-documents"),
path("<str:conversation_id>/export-word/", views.export_word, name="export-word"),
]