From 86924fffa5e1192e4089c61d05515baaf911b76c Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 24 Mar 2023 16:34:48 +0800 Subject: [PATCH] up --- functional_crazy.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/functional_crazy.py b/functional_crazy.py index 2fce973..0311fd7 100644 --- a/functional_crazy.py +++ b/functional_crazy.py @@ -109,7 +109,9 @@ def 解析项目本身(txt, top_p, temperature, chatbot, history, systemPromptTx chatbot[-1] = (i_say, gpt_say) history.append(i_say); history.append(gpt_say) yield chatbot, history, '正常' - + res = write_results_to_file(history) + chatbot.append(("完成了吗?", res)) + yield chatbot, history, '正常' @CatchException def 解析一个Python项目(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):