Aventuras/src/lib/services/ai/utils/index.ts
2026-02-02 21:34:56 -05:00

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';