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