green commited on
Commit
21a972c
1 Parent(s): e3c73af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -200,7 +200,7 @@ 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 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))
 
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))