Update app.py
Browse files
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 =
|
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())
|