Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Delik/Anitalker
nikkmitra
/
talking_image
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3476a98
talking_image
/
app.py
Delik
Create app.py
814e6c4
verified
6 months ago
raw
Copy download link
history
blame
Safe
184 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"textbox"
, outputs=
"textbox"
)
if
__name__ ==
"__main__"
:
demo.launch()