aigmixer's picture
Update app.py
fbe87a0
raw
history blame
229 Bytes
#testing commits
import gradio as gr
import piper
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch(show_api=False)