better cmd清理大师

This commit is contained in:
SengokuCola
2025-03-21 17:59:13 +08:00
parent a47266abd2
commit a7278a37c7
3 changed files with 14 additions and 6 deletions

View File

@@ -314,7 +314,7 @@ def split_into_sentences_w_remove_punctuation(text: str) -> List[str]:
sentence = sentence.replace("", " ").replace(",", " ")
sentences_done.append(sentence)
logger.info(f"处理后的句子: {sentences_done}")
logger.debug(f"处理后的句子: {sentences_done}")
return sentences_done