Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fhudi
/
textgames
like
3
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8f5315f
textgames
/
app.py
fhudi
Update app.py
7df41b1
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
213 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"textbox"
, outputs=
"textbox"
)
demo.launch(share=
True
, auth=(
"username"
,
"password"
), ssr_mode=
False
)