Update app.py
Browse files
app.py
CHANGED
@@ -198,7 +198,7 @@ choices.insert(0,'None')
|
|
198 |
|
199 |
st.session_state['dt'] = dt.now()
|
200 |
st.write("Smaller chunks means more of the article included in the summary and a longer digest.")
|
201 |
-
chunk_size = st.select_slider(label="Slider", options=[i for i in range(50,801,50)], value=400)
|
202 |
# Form used to take 3 menu inputs
|
203 |
with st.form(key='columns_in_form'):
|
204 |
cols = st.columns(3)
|
|
|
198 |
|
199 |
st.session_state['dt'] = dt.now()
|
200 |
st.write("Smaller chunks means more of the article included in the summary and a longer digest.")
|
201 |
+
chunk_size = st.sidebar.select_slider(label="Slider", options=[i for i in range(50,801,50)], value=400)
|
202 |
# Form used to take 3 menu inputs
|
203 |
with st.form(key='columns_in_form'):
|
204 |
cols = st.columns(3)
|