EC2 Default User
commited on
Commit
·
7ccf97f
1
Parent(s):
3a3ada7
Fixing order of importation of modules
Browse files
app.py
CHANGED
@@ -11,8 +11,8 @@ sys.path.append(TTS_PATH) # set this if TTS is not installed globally
|
|
11 |
VOICE_PATH = "utils/"
|
12 |
# add libraries into environment
|
13 |
sys.path.append(VOICE_PATH) # set this if modules and voice are not installed globally
|
14 |
-
from utils.modules import *
|
15 |
from utils.voice import *
|
|
|
16 |
#Definition Web App in Gradio
|
17 |
text_to_say=gr.inputs.Textbox(label='What would you like the voice to say? (max. 2000 characters per request)')
|
18 |
url =gr.inputs.Textbox(label = "Enter the YouTube URL below:")
|
|
|
11 |
VOICE_PATH = "utils/"
|
12 |
# add libraries into environment
|
13 |
sys.path.append(VOICE_PATH) # set this if modules and voice are not installed globally
|
|
|
14 |
from utils.voice import *
|
15 |
+
from utils.modules import *
|
16 |
#Definition Web App in Gradio
|
17 |
text_to_say=gr.inputs.Textbox(label='What would you like the voice to say? (max. 2000 characters per request)')
|
18 |
url =gr.inputs.Textbox(label = "Enter the YouTube URL below:")
|