diff --git a/src/modules/rag-chat/rag-chat.module.ts b/src/modules/rag-chat/rag-chat.module.ts index f16a57d..1c1bbd0 100644 --- a/src/modules/rag-chat/rag-chat.module.ts +++ b/src/modules/rag-chat/rag-chat.module.ts @@ -3,8 +3,10 @@ import { RagChatController } from './rag-chat.controller'; import { AdminRagChatController } from './admin-rag-chat.controller'; import { RagChatService } from './rag-chat.service'; import { PrismaService } from '../../infrastructure/database/prisma.service'; +import { AiModule } from '../ai/ai.module'; @Module({ + imports: [AiModule], controllers: [RagChatController, AdminRagChatController], providers: [RagChatService, PrismaService], exports: [RagChatService],