Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asynchronousai
/
roblox-cs
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b4460d1
roblox-cs
/
app.py
asynchronousai
Update app.py
b4460d1
verified
7 months ago
raw
Copy download link
history
blame
Safe
146 Bytes
import
gradio
as
gr
def
code
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=code, inputs=
"text"
, outputs=
"text"
)
demo.launch()