Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Roblox
/
cube3d-interactive
like
150
Running
on
L40S
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
5e9b2d2
cube3d-interactive
/
app.py
jxwang1
Add application file
6d250b3
19 days ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()