Spaces:
Runtime error
Runtime error
RealEmmettS
commited on
Update app.py
Browse files
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)
|