import { Module, forwardRef } from '@nestjs/common'; import { PlatformModule } from '../platform/platform.module'; import { AiEnrichmentService } from './ai-enrichment.service'; import { AiChatController } from './ai-chat.controller'; import { CallerResolutionModule } from '../caller/caller-resolution.module'; @Module({ imports: [PlatformModule, forwardRef(() => CallerResolutionModule)], controllers: [AiChatController], providers: [AiEnrichmentService], exports: [AiEnrichmentService], }) export class AiModule {}