12 lines
521 B
TypeScript
12 lines
521 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 { ImportCandidateModule } from '../import-candidate/import-candidate.module';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
imports: [DocumentImportModule, KnowledgeSourceModule, ImportCandidateModule],
|
||
|
|
controllers: [InternalRagController],
|
||
|
|
})
|
||
|
|
export class RagModule {}
|