From 97193065f6bbe101c110fc497486f89bc4a1c969 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 2 Apr 2023 20:22:11 +0800 Subject: [PATCH] remove verbose print --- toolbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolbox.py b/toolbox.py index f7f73e9..c55a48e 100644 --- a/toolbox.py +++ b/toolbox.py @@ -176,7 +176,7 @@ def close_up_code_segment_during_stream(gpt_reply): segments = gpt_reply.split('```') n_mark = len(segments) - 1 if n_mark % 2 == 1: - print('输出代码片段中!') + # print('输出代码片段中!') return gpt_reply+'\n```' else: return gpt_reply