Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AbuAmirx
/
imagedt
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
imagedt
/
app.py
AbuAmirx
Create app.py
f46bbf3
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
158 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
iface = gr.Interface(
fn=greet,
inputs=
"text"
,
outputs=
"text"
)
iface.launch()