rime commited on
Commit
01dd87b
·
1 Parent(s): b744a26

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,6 +26,6 @@ def synthesize(key, sentence, speaker):
26
  return 'tmp.wav'
27
 
28
  iface = gr.Interface(fn=synthesize, inputs=[gr.Textbox(type="password", info="This is where you put your Rime TTS API key."),
29
- gr.Dropdown(sorted(list(speakers)),info="Enter the text you want synthesized here. Check out our documentation for specifics and suggestions on text input!"),
30
  gr.Textbox(info="Enter the code for the speaker you want to synthesize.")], outputs=gr.Audio())
31
  iface.launch()
 
26
  return 'tmp.wav'
27
 
28
  iface = gr.Interface(fn=synthesize, inputs=[gr.Textbox(type="password", info="This is where you put your Rime TTS API key."),
29
+ gr.Dropdown(list(speakers),info="Enter the text you want synthesized here. Check out our documentation for specifics and suggestions on text input!"),
30
  gr.Textbox(info="Enter the code for the speaker you want to synthesize.")], outputs=gr.Audio())
31
  iface.launch()