mirror of
https://github.com/leon-ai/leon.git
synced 2024-12-20 07:11:40 +03:00
15 lines
238 B
JavaScript
15 lines
238 B
JavaScript
import log from '@/helpers/log'
|
|
|
|
import setupTts from './setup-tts';
|
|
|
|
/**
|
|
* Execute the setup offline TTS script
|
|
*/
|
|
(async () => {
|
|
try {
|
|
await setupTts()
|
|
} catch (e) {
|
|
log.error(`Failed to setup offline TTS: ${e}`)
|
|
}
|
|
})()
|