potato / app.py
azzr's picture
azzr HF Staff
Update app.py
6145ac3 verified
raw
history blame contribute delete
153 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!! :D "
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()