Skip to content

Commit

Permalink
fix: download summary does not appear for recursive summary mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
sean1832 committed Apr 1, 2023
1 parent 22f65f4 commit 302f7c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SumGPT.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,5 +144,5 @@
if finish_reason_final == 'length':
st.warning(
'⚠️Result cut off due to length. Consider increasing the [Max Tokens Summary] parameter.')
if final_response is not None:
if final_response is not None or rec_responses is not None:
util.download_results(rec_responses, final_response)
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "SumGPT",
"version": "1.0.4",
"version": "1.0.5",
"license": "MIT",
"author": "Zeke Zhang",
"homepage": "https://github.com/sean1832/SumGPT",
Expand Down

0 comments on commit 302f7c7

Please sign in to comment.