UNPKG

@aituber-onair/voice

Version:

Voice synthesis library for AITuber OnAir

21 lines (20 loc) 706 B
/** * AITuber OnAir Voice Package * Voice synthesis and text-to-speech functionality */ export { VoiceEngineAdapter } from './services/VoiceEngineAdapter'; // Audio players export * from './services/audio'; // Voice engines export * from './engines'; // Types export * from './types/voice'; export * from './types/voiceEngine'; export * from './types/chat'; // Utils export { textToScreenplay, textsToScreenplay, screenplayToText, } from './utils/screenplay'; export { EmotionParser } from './utils/emotionParser'; // Voice-specific messages utility export { splitSentence, textsToScreenplay as textsToVoiceScreenplay, } from './services/messages'; // Constants export * from './constants/voiceEngine';