Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
loveh
/
MKorA
like
0
Runtime error
App
Files
Files
Community
main
MKorA
/
app.py
loveh
Update app.py
424e556
verified
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
124 Bytes
import
Gradio
as
gr
def
greet
(
name
):
return
f'Hello
{name}
!'
gr.Interface(fn=greet, inputs=
'text'
, outputs=
'text'
).launch()