Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
BuaaCXF
/
ECLIPSE
like
1
No application file
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/2
ECLIPSE
/
app.py
Shruthi34
Create app.py
64ae2f3
verified
3 months ago
raw
Copy download link
history
blame
Safe
129 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
"
gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch()