Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
space-example
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8223ca5
space-example
/
app.py
abidlabs
HF Staff
Update app.py
8223ca5
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
176 Bytes
import
gradio
as
gr
def
echo
(
message, history
):
return
message[
"text"
]
demo = gr.ChatInterface(
fn=echo,
title=
"Echo Bot"
,
multimodal=
True
,
)
demo.launch()