Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
IT3103-2025S1
/
222968z
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4943bf6
222968z
/
app.py
Raenell
Create app.py
4943bf6
verified
2 days ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()