green commited on
Commit
3817011
1 Parent(s): 0f38458

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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.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)
@@ -238,7 +238,7 @@ with st.form(key='columns_in_form'):
238
  st.write("No text to return...huh.")
239
  else:
240
  st.write("Your digest is ready:\n")
241
- st.sidebar.info(digestor.text)
242
  st.write(f"""Text approximately {len(digestor.text.split(" ") )} words.""")
243
  st.write(f"""Number of articles summarized: {outdata['article_count']}""")
244
 
 
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)
 
238
  st.write("No text to return...huh.")
239
  else:
240
  st.write("Your digest is ready:\n")
241
+ st.info(digestor.text)
242
  st.write(f"""Text approximately {len(digestor.text.split(" ") )} words.""")
243
  st.write(f"""Number of articles summarized: {outdata['article_count']}""")
244