Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nateraw
/
test-spaces-app-from-github
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2ed3ae1
test-spaces-app-from-github
/
app.py
nateraw
Synced repo using 'sync_with_huggingface' Github Action
2ed3ae1
over 2 years ago
raw
Copy download link
history
blame
Safe
172 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
interface = gr.Interface(greet,
'text'
,
'text'
)
if
__name__ ==
'__main__'
:
interface.launch()