/** * AITuber OnAir Voice Package * Voice synthesis and text-to-speech functionality */ export type { VoiceService, VoiceServiceOptions, VoiceServiceOptionsUpdate, AudioPlayOptions, MinimaxVoiceSettingsOptions, MinimaxAudioSettingsOptions, MinimaxAudioFormat, PiperPlusVoiceServiceOptions, UnrealSpeechVoiceServiceOptions, ElevenLabsVoiceServiceOptions, InworldVoiceServiceOptions, GradiumVoiceServiceOptions, VoiceVoxQueryParameterOverrides, AivisSpeechQueryParameterOverrides, } from './services/VoiceService'; export { VoiceEngineAdapter } from './services/VoiceEngineAdapter'; export type { PiperPlusAssets } from './engines/PiperPlusEngine'; export * from './services/audio'; export type { AudioPlayer } from './types/audioPlayer'; export * from './engines'; export * from './types/voice'; export * from './types/voiceEngine'; export * from './types/chat'; export { textToScreenplay, textsToScreenplay, screenplayToText, } from './utils/screenplay'; export { EmotionParser } from './utils/emotionParser'; export { splitSentence, textsToScreenplay as textsToVoiceScreenplay, } from './services/messages'; export * from './constants/voiceEngine';