This commit is contained in:
Your Name 2023-03-24 16:34:48 +08:00
parent 8053f696d5
commit 818690037a

View File

@ -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):