remove verbose print

This commit is contained in:
Your Name 2023-04-02 20:22:11 +08:00
parent a999487b8e
commit 97193065f6

View File

@ -176,7 +176,7 @@ def close_up_code_segment_during_stream(gpt_reply):
segments = gpt_reply.split('```') segments = gpt_reply.split('```')
n_mark = len(segments) - 1 n_mark = len(segments) - 1
if n_mark % 2 == 1: if n_mark % 2 == 1:
print('输出代码片段中!') # print('输出代码片段中!')
return gpt_reply+'\n```' return gpt_reply+'\n```'
else: else:
return gpt_reply return gpt_reply