From 7e1f5c0e9b0d48d083b1e62674d9497ed72f3ccf Mon Sep 17 00:00:00 2001 From: WangDL Date: Tue, 19 May 2026 22:39:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=86=85=E9=83=A8=20RAG=20API=20?= =?UTF-8?q?=E6=A0=87=E8=AE=B0=20@Public=20=E7=BB=95=E8=BF=87=20JWT=20?= =?UTF-8?q?=E8=AE=A4=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/rag/internal-rag.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/rag/internal-rag.controller.ts b/src/modules/rag/internal-rag.controller.ts index 643582b..9709639 100644 --- a/src/modules/rag/internal-rag.controller.ts +++ b/src/modules/rag/internal-rag.controller.ts @@ -4,9 +4,11 @@ import { DocumentImportRepository } from '../document-import/document-import.rep import { KnowledgeSourceRepository } from '../knowledge-source/knowledge-source.repository'; import { ImportCandidateRepository } from '../import-candidate/import-candidate.repository'; import { PrismaService } from '../../infrastructure/database/prisma.service'; +import { Public } from '../../common/decorators/public.decorator'; @ApiTags('internal-rag') @Controller('internal/rag') +@Public() export class InternalRagController { constructor( private readonly importRepo: DocumentImportRepository,