diff --git a/src/core/EdgeSpeechTTS/createEdgeSpeech.ts b/src/core/EdgeSpeechTTS/createEdgeSpeech.ts index f073222..3152d95 100644 --- a/src/core/EdgeSpeechTTS/createEdgeSpeech.ts +++ b/src/core/EdgeSpeechTTS/createEdgeSpeech.ts @@ -1,9 +1,9 @@ import qs from 'query-string'; import { v4 as uuidv4 } from 'uuid'; -import { SsmlOptions, genSSML } from '@/core/utils/genSSML'; -import { genSendContent } from '@/core/utils/genSendContent'; -import { getHeadersAndData } from '@/core/utils/getHeadersAndData'; +import { SsmlOptions, genSSML } from '../utils/genSSML'; +import { genSendContent } from '../utils/genSendContent'; +import { getHeadersAndData } from '../utils/getHeadersAndData'; export interface EdgeSpeechPayload { /** diff --git a/src/core/MicrosoftSpeechTTS/createMicrosoftSpeech.ts b/src/core/MicrosoftSpeechTTS/createMicrosoftSpeech.ts index f86ac5c..90450f8 100644 --- a/src/core/MicrosoftSpeechTTS/createMicrosoftSpeech.ts +++ b/src/core/MicrosoftSpeechTTS/createMicrosoftSpeech.ts @@ -1,6 +1,6 @@ import { v4 as uuidv4 } from 'uuid'; -import { SsmlOptions, genSSML } from '@/core/utils/genSSML'; +import { SsmlOptions, genSSML } from '../utils/genSSML'; const MICROSOFT_SPEECH_URL = 'https://southeastasia.api.speech.microsoft.com/accfreetrial/texttospeech/acc/v3.0-beta1/vcg/speak';