test / app.py
luis-c465's picture
Upload app.py with huggingface_hub
6e8c704 verified
Raw
History Blame Contribute Delete
152 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()