Update app.py
Browse files
app.py
CHANGED
@@ -137,9 +137,9 @@ def talk(prompt,history):
|
|
137 |
|
138 |
outputs = []
|
139 |
for text in streamer:
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
|
144 |
|
145 |
print("check3B")
|
|
|
137 |
|
138 |
outputs = []
|
139 |
for text in streamer:
|
140 |
+
outputs.append(text)
|
141 |
+
print(outputs)
|
142 |
+
yield "".join(outputs)
|
143 |
|
144 |
|
145 |
print("check3B")
|