pycoze 0.1.379__py3-none-any.whl → 0.1.380__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_base.py +4 -3
- {pycoze-0.1.379.dist-info → pycoze-0.1.380.dist-info}/METADATA +1 -1
- {pycoze-0.1.379.dist-info → pycoze-0.1.380.dist-info}/RECORD +6 -6
- {pycoze-0.1.379.dist-info → pycoze-0.1.380.dist-info}/LICENSE +0 -0
- {pycoze-0.1.379.dist-info → pycoze-0.1.380.dist-info}/WHEEL +0 -0
- {pycoze-0.1.379.dist-info → pycoze-0.1.380.dist-info}/top_level.txt +0 -0
pycoze/bot/chat_base.py
CHANGED
@@ -233,7 +233,6 @@ async def handle_user_inputs(
|
|
233
233
|
ok, is_json_dumps, result = ToolExecutor.execute_tool(
|
234
234
|
cwd, tool_request, abilities
|
235
235
|
)
|
236
|
-
info("assistant", "✅\n" if ok else "❌")
|
237
236
|
|
238
237
|
assistant_content = (
|
239
238
|
"Executing tool: "
|
@@ -243,9 +242,11 @@ async def handle_user_inputs(
|
|
243
242
|
+ "\n[Tool Result End]\n"
|
244
243
|
)
|
245
244
|
lang = "json" if is_json_dumps else "text"
|
245
|
+
status_str = "✅\n" if ok else "❌\n"
|
246
246
|
if show_tool_results:
|
247
|
-
|
248
|
-
|
247
|
+
info("assistant", status_str + f"\n```{lang}\n" + result + "\n```\n\n")
|
248
|
+
else:
|
249
|
+
info("assistant", status_str)
|
249
250
|
conversation_history.append(
|
250
251
|
{"role": "assistant", "content": assistant_content}
|
251
252
|
)
|
@@ -13,7 +13,7 @@ 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
15
|
pycoze/bot/chat.py,sha256=cxaF20QCAoca54lo472o1K9VRXu5f3uU-bH7VdSumnU,5635
|
16
|
-
pycoze/bot/chat_base.py,sha256=
|
16
|
+
pycoze/bot/chat_base.py,sha256=klJdK5W8pIeBB2zuIRXCgonKVKzExGfCP2IiSJsN4Bo,10231
|
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.
|
37
|
-
pycoze-0.1.
|
38
|
-
pycoze-0.1.
|
39
|
-
pycoze-0.1.
|
40
|
-
pycoze-0.1.
|
36
|
+
pycoze-0.1.380.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
37
|
+
pycoze-0.1.380.dist-info/METADATA,sha256=hHflUHg1pkvCCyNUwikenE0w9SnOHrauos6yFT4osGE,854
|
38
|
+
pycoze-0.1.380.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
39
|
+
pycoze-0.1.380.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
40
|
+
pycoze-0.1.380.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|