cbensimon's picture
cbensimon HF staff
Update app.py
9826629
raw
history blame contribute delete
No virus
162 Bytes
import gradio as gr
print(ok)
def greet(name):
return "Hellos " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()