Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dingw
/
echo-chatbot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d0622de
echo-chatbot
/
app.py
dingw
Upload folder using huggingface_hub
d0622de
verified
5 months ago
raw
Copy download link
history
blame
Safe
125 Bytes
import
gradio
as
gr
def
slow_echo
(
message, history
):
return
message
demo = gr.ChatInterface(slow_echo).queue().launch()