Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,11 @@ def respond(
|
|
33 |
return
|
34 |
|
35 |
response = "..."
|
36 |
-
|
|
|
|
|
|
|
|
|
37 |
|
38 |
generation_kwargs = dict(
|
39 |
max_length=8192,
|
|
|
33 |
return
|
34 |
|
35 |
response = "..."
|
36 |
+
while 1:
|
37 |
+
import time
|
38 |
+
time.sleep(1)
|
39 |
+
response += " ..."
|
40 |
+
yield response
|
41 |
|
42 |
generation_kwargs = dict(
|
43 |
max_length=8192,
|