diff --git a/src/SumGPT.py b/src/SumGPT.py index e3f7167..9e176bd 100644 --- a/src/SumGPT.py +++ b/src/SumGPT.py @@ -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) diff --git a/src/manifest.json b/src/manifest.json index 807ad3a..9c8e196 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -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",