Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
OjciecTadeusz
/
chatbot
like
0
Running
App
Files
Files
Community
c4ef1ac
chatbot
/
chat-3-interface.py
ghost717
gradio chatbot examples
c4ef1ac
6 months 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()