Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| from cypherSpeech import tts | |
| def text_to_speech(text): | |
| return tts(text) | |
| interface = gr.Interface(fn=text_to_speech, inputs="text", outputs="audio") | |
| interface.launch(share=True) |