pycoze 0.1.375__py3-none-any.whl → 0.1.377__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 CHANGED
@@ -11,9 +11,7 @@ import datetime
11
11
  import pprint
12
12
 
13
13
  def eclipse_tool_result(text):
14
- # 使用正则表达式匹配 [Tool Result Begin] 和 [Tool Result End] 之间的内容
15
14
  pattern = r'\[Tool Result Begin\].*?\[Tool Result End\]'
16
- # 将匹配到的内容替换为 [Tool Result Begin]...[Tool Result End]
17
15
  replaced_text = re.sub(pattern, '[Tool Result Begin]...[Tool Result End]', text, flags=re.DOTALL)
18
16
  return replaced_text
19
17
 
@@ -81,7 +79,7 @@ def chat(bot_setting_file: str):
81
79
  current_time_str = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
82
80
  chat_history_folder = os.path.join(os.path.dirname(bot_setting_file), "chatHistory")
83
81
  os.makedirs(chat_history_folder, exist_ok=True)
84
- chat_history_file = os.path.join(chat_history_folder, current_time_str + ".txt")
82
+ chat_history_file = os.path.join(chat_history_folder, current_time_str + "_no_subject.txt")
85
83
 
86
84
  with open(bot_setting_file, encoding="utf-8") as f:
87
85
  bot_setting = json.load(f)
pycoze/bot/chat_base.py CHANGED
@@ -5,7 +5,7 @@ from .message import info
5
5
  from pycoze.ai import chat_stream_async, extract
6
6
  from .tools import ToolExecutor
7
7
  from typing import List
8
-
8
+ import time
9
9
 
10
10
  def guess_files_in_message(cwd: str, user_message: str) -> List[str]:
11
11
 
@@ -199,7 +199,7 @@ async def handle_user_inputs(
199
199
  )
200
200
  else:
201
201
  conversation_history.append(
202
- {"role": "assistant", "content": "\n\n```" + response[0] + "\n" + response[1] + "\n```\n\n"}
202
+ {"role": "assistant", "content": "\n```" + response[0] + "\n" + response[1] + "\n```\n"}
203
203
  )
204
204
 
205
205
  conversation_history.append(
@@ -233,10 +233,8 @@ async def handle_user_inputs(
233
233
  ok, is_json_dumps, result = ToolExecutor.execute_tool(
234
234
  cwd, tool_request, abilities
235
235
  )
236
- if ok:
237
- info("assistant", "✅\n")
238
- else:
239
- info("assistant", "❌\n")
236
+ info("assistant", "✅\n" if ok else "❌", result)
237
+ time.sleep(0.05)
240
238
  assistant_content = (
241
239
  "Executing tool: "
242
240
  + dumps_markdown_json(tool_request)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pycoze
3
- Version: 0.1.375
3
+ Version: 0.1.377
4
4
  Summary: Package for pycoze only!
5
5
  Author: Yuan Jie Xiong
6
6
  Author-email: aiqqqqqqq@qq.com
@@ -12,8 +12,8 @@ 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=0_L7BKRWkBBrelXQSY3VZdnvlDa1siMbhCtBQ5WYPt8,5559
16
- pycoze/bot/chat_base.py,sha256=KLjBhgPj-ODIpgGBDwRcjN6Cp-w7S--w4jiBl39UOyc,10205
15
+ pycoze/bot/chat.py,sha256=uKPq-QdLi96fZibnyWk2uKeVA9GEbMR0KIQWQ2xIFUA,5401
16
+ pycoze/bot/chat_base.py,sha256=h3Y1-mgVQ-jIe3OY8TZWqw8jhCma5GK-D50OrmMnGgE,10166
17
17
  pycoze/bot/lib.py,sha256=smigeWuhl8esHE-Y5l_9bpjJkEJ5OqrxTyPcO8JIubM,7224
18
18
  pycoze/bot/message.py,sha256=udnIi-h4QgGzkbr_5VcAsVGjoLp9wXJSfBCeuOz7_Bk,802
19
19
  pycoze/bot/prompt.md,sha256=OBxwUY6yiwEmusnUHhwixWYByrWX3BpwfxG_Gfas8UM,15783
@@ -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.375.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
37
- pycoze-0.1.375.dist-info/METADATA,sha256=Y7XLH9rAPZjIlp44hUOXbVv-m-8wax3BMrmSxBZaccM,854
38
- pycoze-0.1.375.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
39
- pycoze-0.1.375.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
40
- pycoze-0.1.375.dist-info/RECORD,,
36
+ pycoze-0.1.377.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
37
+ pycoze-0.1.377.dist-info/METADATA,sha256=6A4x8VeY5F-jjQnqOq3dv87LuKaGau4kM6tSjUudYgQ,854
38
+ pycoze-0.1.377.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
39
+ pycoze-0.1.377.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
40
+ pycoze-0.1.377.dist-info/RECORD,,