mirror of
https://github.com/leon-ai/leon.git
synced 2024-12-19 14:52:21 +03:00
15 lines
238 B
JavaScript
15 lines
238 B
JavaScript
import log from '@/helpers/log'
|
|
|
|
import setupStt from './setup-stt';
|
|
|
|
/**
|
|
* Execute the setup offline STT script
|
|
*/
|
|
(async () => {
|
|
try {
|
|
await setupStt()
|
|
} catch (e) {
|
|
log.error(`Failed to setup offline STT: ${e}`)
|
|
}
|
|
})()
|