Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ITI107-2023S2
/
23B054Q
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
aa59079
23B054Q
/
app.py
Deeksha Shetty
update app.py
aa59079
over 1 year ago
raw
Copy download link
history
blame
Safe
146 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hi "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()