green commited on
Commit
848904d
·
1 Parent(s): 1b0c07e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 st.form(key='columns_in_form'):
204
- cols = st.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')
 
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')