Update app.py
Browse files
app.py
CHANGED
@@ -202,7 +202,6 @@ with st.form(key='columns_in_form'):
|
|
202 |
selections.append(col.selectbox(f'Make a Selection', choices, key=i))
|
203 |
submitted = st.form_submit_button('Submit')
|
204 |
if submitted:
|
205 |
-
st.write("Submitted.\nWhat you'll see:\n\t•The links of the articles being summarized for you digest.\n\t•The digest.\n\t•A graph showing the reduction in articles lengths from original to summary, for each article.\n\t•Some probably issues with the summary.")
|
206 |
selections = [i for i in selections if i is not None]
|
207 |
with st.spinner(text="Creating your digest: this will take a few moments."):
|
208 |
chosen = []
|
|
|
202 |
selections.append(col.selectbox(f'Make a Selection', choices, key=i))
|
203 |
submitted = st.form_submit_button('Submit')
|
204 |
if submitted:
|
|
|
205 |
selections = [i for i in selections if i is not None]
|
206 |
with st.spinner(text="Creating your digest: this will take a few moments."):
|
207 |
chosen = []
|