2026-02-28 11:00:39 -03:00
|
|
|
/**
|
|
|
|
|
* TTS Module Entry Point
|
|
|
|
|
*
|
|
|
|
|
* Public export surface for the Text-to-Speech domain module.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
ttsService,
|
|
|
|
|
TTSService,
|
|
|
|
|
TTS_VOICES,
|
|
|
|
|
} from './service.js';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
summarizeText,
|
|
|
|
|
sanitizeForTTS,
|
2026-04-18 13:46:51 +03:00
|
|
|
sanitizeForNote,
|
|
|
|
|
} from '../text/summarization.js';
|
2026-04-12 09:33:15 +02:00
|
|
|
|
|
|
|
|
export { transcribeAudio } from './stt.js';
|