Hugging Face
Models
Datasets
Spaces
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
rrighart
/
color-tags
Copied
like
1
Running
App
Files
Files and versions
Community
e8ac8ab
color-tags
/
app.py
rrighart
hello test
6c307ee
7 months ago
raw
history
blame
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()