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...
fe85bac
space-example
/
app.py
abidlabs
HF Staff
Update app.py
fe85bac
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
174 Bytes
import
gradio
as
gr
def
echo
(
message, history
):
return
message[
"text"
]
demo = gr.ChatInterface(
fn=echo,
title=
"Echo Bot"
,
multimodal=
True
,
)
demo.launch()