Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
n42
/
pictero
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d096445
pictero
/
app.py
n42
testing git process
d1eb40d
11 months ago
raw
Copy download link
history
blame
Safe
156 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello, are you"
+ name +
"?"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()