mirror of
https://github.com/AventurasTeam/Aventuras.git
synced 2026-04-28 03:40:11 +00:00
21 lines
510 B
TypeScript
21 lines
510 B
TypeScript
/**
|
|
* AI Utilities Module
|
|
*
|
|
* Utility services and helpers for AI operations:
|
|
* - Translation: Multi-language translation service
|
|
* - TTS: Text-to-speech service
|
|
*/
|
|
|
|
export { TranslationService, type TranslationResult, type UITranslationItem } from './TranslationService';
|
|
|
|
export {
|
|
AITTSService,
|
|
aiTTSService,
|
|
TTSProvider,
|
|
GoogleTranslateTTSProvider,
|
|
OpenAICompatibleTTSProvider,
|
|
GOOGLE_TRANSLATE_LANGUAGES,
|
|
type TTSSettings,
|
|
type TTSVoice,
|
|
type TTSStreamChunk,
|
|
} from './TTSService';
|