Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
YmcAI
/
mogwai-wallet
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bb667b2
mogwai-wallet
/
app.py
YmcAI
Upload app.py
04cc6ed
over 1 year ago
raw
Copy download link
history
blame
Safe
152 Bytes
import
gradio
def
hallo
(
name
):
return
f'Hello
{name}
'
interface = gradio.Interface(fn=hallo,inputs=
"text"
, outputs=
"text"
)
interface.launch()