ivy-exploration commited on
Commit
7ca108f
·
verified ·
1 Parent(s): 3462d7e

Fix streaming

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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
- chunks = [chunk for chunk in stream]
129
- st.write_stream(chunks)
 
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]