From aea071e4c9833c5203bfe742c25615a986b009cd Mon Sep 17 00:00:00 2001 From: wangdl Date: Sat, 6 Jun 2026 14:56:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20rag-chat=20controller=20Response=20?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=20import=20type=20=E4=BF=AE=E5=A4=8D=20isola?= =?UTF-8?q?tedModules=20=E7=BC=96=E8=AF=91=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- src/modules/rag-chat/rag-chat.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/rag-chat/rag-chat.controller.ts b/src/modules/rag-chat/rag-chat.controller.ts index 4842f57..2a98c0a 100644 --- a/src/modules/rag-chat/rag-chat.controller.ts +++ b/src/modules/rag-chat/rag-chat.controller.ts @@ -1,6 +1,6 @@ import { Controller, Get, Post, Delete, Body, Param, Res } from '@nestjs/common'; import { ApiTags, ApiOperation, ApiBearerAuth } from '@nestjs/swagger'; -import { Response } from 'express'; +import type { Response } from 'express'; import { RagChatService } from './rag-chat.service'; import { CurrentUser } from '../../common/decorators/current-user.decorator'; import type { UserPayload } from '../../common/types';