soutrik's picture
Add GitHub Actions workflow to deploy to Hugging Face Spaces
f0556d1
raw
history blame
148 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()