Update app.py
Browse files
app.py
CHANGED
@@ -200,8 +200,8 @@ st.session_state['dt'] = dt.now()
|
|
200 |
col2.write("Smaller chunks means more of the article included in the summary and a longer digest.")
|
201 |
chunk_size = col2.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
|
204 |
-
cols =
|
205 |
for i, col in enumerate(cols):
|
206 |
selections.append(col.selectbox(f'Make a Selection', choices, key=i))
|
207 |
submitted = st.form_submit_button('Submit')
|
|
|
200 |
col2.write("Smaller chunks means more of the article included in the summary and a longer digest.")
|
201 |
chunk_size = col2.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 col1.form(key='columns_in_form'):
|
204 |
+
cols = col1.columns(3)
|
205 |
for i, col in enumerate(cols):
|
206 |
selections.append(col.selectbox(f'Make a Selection', choices, key=i))
|
207 |
submitted = st.form_submit_button('Submit')
|