Skip to content

Commit

Permalink
chore: tamed warning when creating new conversation
Browse files Browse the repository at this point in the history
  • Loading branch information
GaiZhenbiao committed Sep 18, 2024
1 parent 01f43a3 commit 56fc993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/models/base_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ def load_chat_history(self, new_history_file_path=None):
)
except:
# 没有对话历史或者对话历史解析失败
logging.info(f"没有找到对话历史记录 {self.history_file_path}")
logging.debug(f"没有找到对话历史记录 {self.history_file_path}")
self.reset()
return (
os.path.basename(self.history_file_path),
Expand Down

0 comments on commit 56fc993

Please sign in to comment.