tutorial / app.py
cls00's picture
tutorial
348c818
Raw
History Blame
149 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(fn=greet, inputs='text', outputs='text')
iface.launch()