Update app.py
Browse files
app.py
CHANGED
@@ -235,7 +235,7 @@ with st.form(key='columns_in_form'):
|
|
235 |
st.write("No text to return...huh.")
|
236 |
else:
|
237 |
st.write("Your digest is ready:\n")
|
238 |
-
st.
|
239 |
st.write(f"""Text approximately {len(digestor.text.split(" ") )} words.""")
|
240 |
st.write(f"""Number of articles summarized: {outdata['article_count']}""")
|
241 |
|
|
|
235 |
st.write("No text to return...huh.")
|
236 |
else:
|
237 |
st.write("Your digest is ready:\n")
|
238 |
+
st.info(digestor.text)
|
239 |
st.write(f"""Text approximately {len(digestor.text.split(" ") )} words.""")
|
240 |
st.write(f"""Number of articles summarized: {outdata['article_count']}""")
|
241 |
|