green commited on
Commit
e377b5d
·
1 Parent(s): d7a972e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -190,7 +190,7 @@ with st.expander("See extra options"):
190
  if st.button("Refresh topics!"):
191
  article_dict, clusters = initialize(LIMIT, USE_CACHE)
192
  st.write("Select chunk size-- \nSmaller chunks means more of the article included in the summary and a longer digest.")
193
- chunk_size = col2.select_slider(label="Slider", options=[i for i in range(50,801,50)], value=400)
194
 
195
  selections = []
196
  choices = list(clusters.keys())
 
190
  if st.button("Refresh topics!"):
191
  article_dict, clusters = initialize(LIMIT, USE_CACHE)
192
  st.write("Select chunk size-- \nSmaller chunks means more of the article included in the summary and a longer digest.")
193
+ chunk_size = st.select_slider(label="Slider", options=[i for i in range(50,801,50)], value=400)
194
 
195
  selections = []
196
  choices = list(clusters.keys())