Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Crimson206
/
Tutorial
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0c16a91
Tutorial
/
src
/
app.py
Crimson206
Upload folder using huggingface_hub
df46be5
verified
over 1 year 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()