Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -31,24 +31,18 @@ def generate_response(user_message, history=None):
|
|
31 |
output = ""
|
32 |
|
33 |
for idx, response in enumerate(stream):
|
34 |
-
if response.
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
history.append(" " + output)
|
39 |
-
else:
|
40 |
-
history[-1] = output
|
41 |
-
chat = [
|
42 |
-
(history[i].strip(), history[i + 1].strip())
|
43 |
-
for i in range(0, len(history) - 1, 2)
|
44 |
-
]
|
45 |
-
yield chat, history
|
46 |
else:
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
52 |
return chat, history
|
53 |
|
54 |
|
|
|
31 |
output = ""
|
32 |
|
33 |
for idx, response in enumerate(stream):
|
34 |
+
if response.event_type == "text-generation":
|
35 |
+
output += response.text
|
36 |
+
if idx == 0:
|
37 |
+
history.append(" " + output)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
else:
|
39 |
+
history[-1] = output
|
40 |
+
chat = [
|
41 |
+
(history[i].strip(), history[i + 1].strip())
|
42 |
+
for i in range(0, len(history) - 1, 2)
|
43 |
+
]
|
44 |
+
yield chat, history
|
45 |
+
|
46 |
return chat, history
|
47 |
|
48 |
|