table-x / app.py
bt9913's picture
Update app.py
a3d2169
raw
history blame contribute delete
No virus
153 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!gaga"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()