Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
JuanMa360
/
chat
like
2
Runtime error
App
Files
Files
Community
4eaf1b2
chat
/
app.py
JuanMa360
bugfix: params
4eaf1b2
3 months ago
raw
Copy download link
history
blame
Safe
192 Bytes
import
time
import
gradio
as
gr
def
slow_echo
(
message, history
):
for
i
in
range
(
len
(message)):
time.sleep(
0.3
)
yield
message[: i+
1
]
gr.ChatInterface(slow_echo).launch()