feat(file-summary): 实现对话附件上传接口

This commit is contained in:
2026-06-06 01:13:23 +08:00
parent 855afcdee3
commit eb87d9040d
8 changed files with 298 additions and 1 deletions

View File

@@ -1,11 +1,12 @@
from django.contrib import admin
from django.contrib.auth.views import LoginView, LogoutView, PasswordChangeView
from django.urls import path
from django.urls import include, path
from review_agent.views import stream_chat, workspace
urlpatterns = [
path("", workspace, name="home"),
path("", include("review_agent.urls")),
path("chat/stream/", stream_chat, name="chat_stream"),
path(
"login/",