Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kos9
/
vid
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
vid
/
app.py
kos9
Update app.py
6f9384c
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
142 Bytes
import
gradio
as
gr
def
hello
(
name
):
return
f"Γεια σου,
{name}
!"
gr.Interface(fn=hello, inputs=
"text"
, outputs=
"text"
).launch()