astro21 commited on
Commit
a7e9ad5
·
verified ·
1 Parent(s): 6b46871

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -36,7 +36,7 @@ def summarize_text(input_text):
36
 
37
  chunk_df = pd.DataFrame({'Chunk Number': range(1, chunk_counter + 1), 'Chunk Length': chunk_lengths})
38
 
39
- return summarized_text, chunk_df, "summarized.txt"
40
 
41
 
42
  def summarize_text_file(file):
@@ -58,6 +58,5 @@ if uploaded_file is not None:
58
  st.subheader("Chunk Information")
59
  st.write(result[1])
60
 
61
- st.markdown(get_binary_file_downloader_html(result[2], "Download Summarized Text"), unsafe_allow_html=True)
62
 
63
 
 
36
 
37
  chunk_df = pd.DataFrame({'Chunk Number': range(1, chunk_counter + 1), 'Chunk Length': chunk_lengths})
38
 
39
+ return summarized_text_only, chunk_df, "summarized.txt"
40
 
41
 
42
  def summarize_text_file(file):
 
58
  st.subheader("Chunk Information")
59
  st.write(result[1])
60
 
 
61
 
62