CCLAP / app.py
RobinWZQ's picture
Upload app.py
93e3b3d
raw
history blame
155 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()