Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 18x 6x | import { forwardRef, Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { SystemPrompt } from '../core-entities';
import { SystemPromptsService } from './system-prompts.service';
import { SystemPromptsController } from './system-prompts.controller';
import { EventsModule } from '../events/events.module';
import { McpModule } from '../mcp/mcp.module';
import { ContextGenerationModule } from '../context-generation/context-generation.module';
import { LlmOrchestrationModule } from '../llm-orchestration/llm-orchestration.module';
import { CustomVariablesModule } from '../custom-variables/custom-variables.module';
@Module({
imports: [
TypeOrmModule.forFeature([SystemPrompt]),
EventsModule,
McpModule,
ContextGenerationModule,
forwardRef(() => LlmOrchestrationModule),
CustomVariablesModule,
],
controllers: [SystemPromptsController],
providers: [SystemPromptsService],
exports: [SystemPromptsService],
})
export class SystemPromptsModule {}
|