pycoze 0.1.370__py3-none-any.whl → 0.1.372__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pycoze/bot/chat.py +9 -5
- {pycoze-0.1.370.dist-info → pycoze-0.1.372.dist-info}/METADATA +1 -1
- {pycoze-0.1.370.dist-info → pycoze-0.1.372.dist-info}/RECORD +6 -6
- {pycoze-0.1.370.dist-info → pycoze-0.1.372.dist-info}/LICENSE +0 -0
- {pycoze-0.1.370.dist-info → pycoze-0.1.372.dist-info}/WHEEL +0 -0
- {pycoze-0.1.370.dist-info → pycoze-0.1.372.dist-info}/top_level.txt +0 -0
pycoze/bot/chat.py
CHANGED
@@ -8,6 +8,7 @@ from pycoze import utils
|
|
8
8
|
import tempfile
|
9
9
|
import re
|
10
10
|
import datetime
|
11
|
+
import pprint
|
11
12
|
|
12
13
|
def eclipse_tool_result(text):
|
13
14
|
# 使用正则表达式匹配 [Tool Result Begin] 和 [Tool Result End] 之间的内容
|
@@ -16,6 +17,11 @@ def eclipse_tool_result(text):
|
|
16
17
|
replaced_text = re.sub(pattern, '[Tool Result Begin]...[Tool Result End]', text, flags=re.DOTALL)
|
17
18
|
return replaced_text
|
18
19
|
|
20
|
+
def output_chat_history(file_path, chat_history):
|
21
|
+
with open(file_path, 'w', encoding='utf-8') as f:
|
22
|
+
for chat in chat_history:
|
23
|
+
f.write(chat["role"] + ":\n" + chat["content"] + "\n\n")
|
24
|
+
|
19
25
|
|
20
26
|
async def check_interrupt_file(interval, interrupt_file, chat_task):
|
21
27
|
while True:
|
@@ -75,7 +81,7 @@ def chat(bot_setting_file: str):
|
|
75
81
|
current_time_str = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
76
82
|
chat_history_folder = os.path.join(os.path.dirname(bot_setting_file), "chatHistory")
|
77
83
|
os.makedirs(chat_history_folder, exist_ok=True)
|
78
|
-
chat_history_file = os.path.join(chat_history_folder, current_time_str + ".
|
84
|
+
chat_history_file = os.path.join(chat_history_folder, current_time_str + ".txt")
|
79
85
|
|
80
86
|
with open(bot_setting_file, encoding="utf-8") as f:
|
81
87
|
bot_setting = json.load(f)
|
@@ -124,8 +130,7 @@ def chat(bot_setting_file: str):
|
|
124
130
|
output("assistant", CHAT_DATA["info"])
|
125
131
|
is_save_fail = False
|
126
132
|
try:
|
127
|
-
|
128
|
-
f.write(json.dumps(conversation_history, ensure_ascii=False, indent=4) + "\n")
|
133
|
+
output_chat_history(conversation_history, chat_history_file)
|
129
134
|
except Exception as e:
|
130
135
|
print(f"Error writing chat history to file: {e}")
|
131
136
|
is_save_fail = True
|
@@ -135,8 +140,7 @@ def chat(bot_setting_file: str):
|
|
135
140
|
if is_save_fail:
|
136
141
|
# 去除工具结果后,重新保存
|
137
142
|
try:
|
138
|
-
|
139
|
-
f.write(json.dumps(eclipse_conversation_history, ensure_ascii=False, indent=4) + "\n")
|
143
|
+
output_chat_history(eclipse_conversation_history, chat_history_file)
|
140
144
|
except Exception as e:
|
141
145
|
print(f"Error writing chat history to file: {e}")
|
142
146
|
|
@@ -12,7 +12,7 @@ pycoze/api/lib/view.py,sha256=_PIpTfeuTPPlMDKshMGsqFQYMq7ZiO4Hg5XwHwDoU60,7357
|
|
12
12
|
pycoze/api/lib/web.py,sha256=GWgtiTJOolKOX2drXcwuyqTcbo5FQVxa1NuBGcNyjyc,223
|
13
13
|
pycoze/api/lib/window.py,sha256=bTkQCzQZ7i3pYXB70bUSTBNJ9C4TW_X3yMae1VkquGk,1944
|
14
14
|
pycoze/bot/__init__.py,sha256=rL3Q-ycczRpSFfKn84fg3QBl5k22WpyeIU5qOEjEby8,79
|
15
|
-
pycoze/bot/chat.py,sha256=
|
15
|
+
pycoze/bot/chat.py,sha256=qFkT_jbZUdoTwqV9WATTnX8o3OypOjz5TyBwKtlukMs,5559
|
16
16
|
pycoze/bot/chat_base.py,sha256=LYe615wUY5av4gJ34XpRi6aoKFnM5cCpPRckzkeL-lQ,9920
|
17
17
|
pycoze/bot/lib.py,sha256=smigeWuhl8esHE-Y5l_9bpjJkEJ5OqrxTyPcO8JIubM,7224
|
18
18
|
pycoze/bot/message.py,sha256=udnIi-h4QgGzkbr_5VcAsVGjoLp9wXJSfBCeuOz7_Bk,802
|
@@ -33,8 +33,8 @@ pycoze/utils/arg.py,sha256=jop1tBfe5hYkHW1NSpCeaZBEznkgguBscj_7M2dWfrs,503
|
|
33
33
|
pycoze/utils/env.py,sha256=5pWlXfM1F5ZU9hhv1rHlDEanjEW5wf0nbyez9bNRqqA,559
|
34
34
|
pycoze/utils/socket.py,sha256=bZbFFRH4mfThzRqt55BAAGQ6eICx_ja4x8UGGrUdAm8,2428
|
35
35
|
pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
|
36
|
-
pycoze-0.1.
|
37
|
-
pycoze-0.1.
|
38
|
-
pycoze-0.1.
|
39
|
-
pycoze-0.1.
|
40
|
-
pycoze-0.1.
|
36
|
+
pycoze-0.1.372.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
37
|
+
pycoze-0.1.372.dist-info/METADATA,sha256=biTZZrqihFYIbmFjP7XEOdq28hpi3JsNtK04q5x0-GI,854
|
38
|
+
pycoze-0.1.372.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
39
|
+
pycoze-0.1.372.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
40
|
+
pycoze-0.1.372.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|