From c608562313a6423c5145d61cf4dbc25be440803d Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 7 Apr 2026 02:37:17 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20replace=20=E8=9A=82=E8=9A=81=E9=9B=86?= =?UTF-8?q?=E5=9B=A2=20with=20=E6=98=9F=E4=B9=8B=E9=91=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/antaf/antaf_llm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/antaf/antaf_llm.py b/modules/antaf/antaf_llm.py index 548a744..5d9e332 100644 --- a/modules/antaf/antaf_llm.py +++ b/modules/antaf/antaf_llm.py @@ -68,9 +68,9 @@ class LLMProvider(LLMProviderBase): # 人格替换 text = text.replace("蚂蚁阿福", "泰小虎") text = text.replace("阿福", "泰小虎") - text = text.replace("蚂蚁集团", "泰兴福") - text = text.replace("蚂蚁", "泰兴福") - text = text.replace("支付宝", "泰兴福") + text = text.replace("蚂蚁集团", "星之鑫") + text = text.replace("蚂蚁", "星之鑫") + text = text.replace("支付宝", "星之鑫") text = text.replace("健康是福", "健康是虎") # 多余空格和空行 text = re.sub(r' +', ' ', text)