hello-world / app.py
abidlabs's picture
abidlabs HF Staff
Upload app.py
a1530b0
raw
history blame contribute delete
169 Bytes
import gradio as gr
def greet(name):
return "Hello " + name
gr.Interface(fn=greet, inputs="text", outputs="text", css=".footer{display:none !important}").launch()