Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
XuBailing
/
CongMa
like
0
Configuration error
App
Files
Files
Community
main
CongMa
/
app.py
XuBailing
Update app.py
6f0b819
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
154 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"test Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()