Simon Stolarczyk
Add application file
a931541
raw
history blame
171 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "! Let's make some music!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()