Fix streaming
Browse files
app.py
CHANGED
@@ -125,8 +125,9 @@ with Chat_Col:
|
|
125 |
time_to_completion = round(perf_counter() - start, 2)
|
126 |
|
127 |
# Writing answer progressively
|
128 |
-
|
129 |
-
st.write_stream(
|
|
|
130 |
|
131 |
# Computing metrics
|
132 |
last_chunk = chunks[-1]
|
|
|
125 |
time_to_completion = round(perf_counter() - start, 2)
|
126 |
|
127 |
# Writing answer progressively
|
128 |
+
stream, stream_copy = itertools.tee(stream)
|
129 |
+
st.write_stream(stream)
|
130 |
+
chunks = [chunk for chunk in stream_copy]
|
131 |
|
132 |
# Computing metrics
|
133 |
last_chunk = chunks[-1]
|