RealEmmettS's picture
Update app.py
23543ca verified
raw
history blame contribute delete
202 Bytes
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)