bug fixes

这个提交包含在:
binary-husky
2023-11-29 00:36:26 +08:00
父节点 1de63835fc
当前提交 15f14f51ff
共有 22 个文件被更改,包括 3215 次插入193 次删除

查看文件

@@ -198,7 +198,7 @@ class LocalLLMHandle(Process):
if res.startswith(self.std_tag):
new_output = res[len(self.std_tag):]
std_out = std_out[:std_out_clip_len]
# print(new_output, end='')
print(new_output, end='')
std_out = new_output + std_out
yield self.std_tag + '\n```\n' + std_out + '\n```\n'
elif res == '[Finish]':