Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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
|
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 |
|