mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 18:08:16 +00:00
- Call Control API (CONFERENCE/HOLD/MUTE/KICK_CALL) - Recording pause/unpause - Fetch CDR Detailed (call history with recordings) - Abandon Calls (missed calls from Ozonetel) - Call Assist WebSocket gateway (Deepgram STT + OpenAI suggestions) - Call Assist service (lead context loading) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
354 B
TypeScript
11 lines
354 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CallAssistGateway } from './call-assist.gateway';
|
|
import { CallAssistService } from './call-assist.service';
|
|
import { PlatformModule } from '../platform/platform.module';
|
|
|
|
@Module({
|
|
imports: [PlatformModule],
|
|
providers: [CallAssistGateway, CallAssistService],
|
|
})
|
|
export class CallAssistModule {}
|