Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
beankid
/
hellow
like
0
Model card
Files
Files and versions
Community
main
hellow
/
README.md
beankid
hi.pi
ecc139d
over 2 years ago
preview
code
|
raw
Copy download link
history
blame
contribute
delete
Safe
149 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()