Skip to content

Commit

Permalink
🔧 docs: fix website
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Nov 16, 2023
1 parent e4b5d5c commit 18cbd39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/core/EdgeSpeechTTS/createEdgeSpeech.ts
Original file line number Diff line number Diff line change
@@ -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 {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/core/MicrosoftSpeechTTS/createMicrosoftSpeech.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

0 comments on commit 18cbd39

Please sign in to comment.