Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
umair894
/
xyz
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
xyz
/
app.py
umair894
Update app.py
73bf526
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
162 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"We are learning AI "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()