Update app.py
Browse files
app.py
CHANGED
@@ -21,6 +21,6 @@ def synthesize(key, sentence, speaker):
|
|
21 |
return 'tmp.wav'
|
22 |
|
23 |
iface = gr.Interface(fn=synthesize, inputs=[gr.Textbox(type="password", info="This is where you put your Rime TTS API key."),
|
24 |
-
gr.Textbox(info="Enter the
|
25 |
gr.Textbox(info="Enter speaker code here.")], outputs=gr.Audio())
|
26 |
iface.launch()
|
|
|
21 |
return 'tmp.wav'
|
22 |
|
23 |
iface = gr.Interface(fn=synthesize, inputs=[gr.Textbox(type="password", info="This is where you put your Rime TTS API key."),
|
24 |
+
gr.Textbox(info="Enter the text you want synthesized here. Check out our documentation for specifics and suggestions on text input!"),
|
25 |
gr.Textbox(info="Enter speaker code here.")], outputs=gr.Audio())
|
26 |
iface.launch()
|