Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DROWHOODIS
/
vidgen2
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c42b976
vidgen2
/
app.py
DROWHOODIS
Create app.py
c42b976
verified
24 days ago
raw
Copy download link
history
blame
Safe
214 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()
git add app.py && git commit -m
'Add application file'
&& git push