Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Manofem
/
Test
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1858fb0
Test
/
app.py
Manofem
Update app.py
037d60c
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
206 Bytes
import
time
import
gradio
as
gr
def
slow_echo
(
message, history
):
for
i
in
range
(
len
(message)):
time.sleep(
0.3
)
yield
"You typed: "
+ message[: i+
1
]
gr.ChatInterface(slow_echo).launch()