api-server/src/modules/rag/rag.module.ts
wangdl 0889e3af46
All checks were successful
Deploy API Server / build (push) Successful in 36s
Deploy API Server / deploy (push) Successful in 1m0s
feat: knowledge generation workflow + drop import-candidate module + migrations
2026-07-08 19:34:10 +08:00

12 lines
505 B
TypeScript

import { Module } from '@nestjs/common';
import { InternalRagController } from './internal-rag.controller';
import { DocumentImportModule } from '../document-import/document-import.module';
import { KnowledgeSourceModule } from '../knowledge-source/knowledge-source.module';
import { StorageModule } from '../../infrastructure/storage/storage.module';
@Module({
imports: [DocumentImportModule, KnowledgeSourceModule, StorageModule],
controllers: [InternalRagController],
})
export class RagModule {}