Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ganeshkamath89/Chat_with_bot
ganeshkamath89
/
Chat_with_blender_bot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ganeshkamath89
commited on
Apr 27, 2024
Commit
4636668
·
verified
·
1 Parent(s):
d3cbac3
Adding a streaming function to chat
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import time
2
+
import gradio as gr
3
+
4
+
def slow_echo(message, history):
5
+
for i in range(len(message)):
6
+
time.sleep(0.3)
7
+
yield "You typed: " + message[: i+1]
8
+
9
+
gr.ChatInterface(slow_echo).launch()