Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
4
Running
on
Zero
App
Files
Files
Community
45b4d8e
fastapi_django_main_live
/
routers
/
greet
/
greet.py
kenken999
test
cf75111
5 months ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
gradio_interface = gr.Interface(fn=greet, inputs=
"textbox"
, outputs=
"textbox"
)