RealEmmettS commited on
Commit
23543ca
·
verified ·
1 Parent(s): 0d08402

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,7 +1,8 @@
1
  import gradio as gr
 
2
 
3
  def text_to_speech(text):
4
  return tts(text)
5
 
6
  interface = gr.Interface(fn=text_to_speech, inputs="text", outputs="audio")
7
- interface.launch()
 
1
  import gradio as gr
2
+ from cypherSpeech import tts
3
 
4
  def text_to_speech(text):
5
  return tts(text)
6
 
7
  interface = gr.Interface(fn=text_to_speech, inputs="text", outputs="audio")
8
+ interface.launch(share=True)