pycoze 0.1.381__py3-none-any.whl → 0.1.383__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 +6 -1
- pycoze/bot/chat_base.py +6 -4
- pycoze/bot/tools.py +1 -1
- {pycoze-0.1.381.dist-info → pycoze-0.1.383.dist-info}/METADATA +1 -1
- {pycoze-0.1.381.dist-info → pycoze-0.1.383.dist-info}/RECORD +8 -8
- {pycoze-0.1.381.dist-info → pycoze-0.1.383.dist-info}/LICENSE +0 -0
- {pycoze-0.1.381.dist-info → pycoze-0.1.383.dist-info}/WHEEL +0 -0
- {pycoze-0.1.381.dist-info → pycoze-0.1.383.dist-info}/top_level.txt +0 -0
pycoze/bot/chat.py
CHANGED
@@ -8,6 +8,8 @@ from pycoze import utils
|
|
8
8
|
import tempfile
|
9
9
|
import re
|
10
10
|
import datetime
|
11
|
+
from pathlib import Path
|
12
|
+
|
11
13
|
|
12
14
|
def eclipse_tool_result(text, threshold=100):
|
13
15
|
pattern = r'\[Tool Result Begin\](.*?)\[Tool Result End\]'
|
@@ -93,7 +95,10 @@ def chat(bot_setting_file: str):
|
|
93
95
|
abilities = get_abilities(bot_setting)
|
94
96
|
continuouslyRememberToolResults = bot_setting["continuouslyRememberToolResults"]
|
95
97
|
|
96
|
-
|
98
|
+
if bot_setting["specifiedWorkingDirectory"] is None:
|
99
|
+
cwd = tempfile.mkdtemp()
|
100
|
+
else:
|
101
|
+
cwd = Path(bot_setting["specifiedWorkingDirectory"]).as_posix()
|
97
102
|
system_prompt, has_any_tool = get_system_prompt(abilities, bot_setting)
|
98
103
|
conversation_history = [
|
99
104
|
{
|
pycoze/bot/chat_base.py
CHANGED
@@ -37,8 +37,7 @@ def user_task_prompt(conversation_history, cwd, user_input: str, programmer_mode
|
|
37
37
|
if content
|
38
38
|
else ""
|
39
39
|
)
|
40
|
-
return f"""
|
41
|
-
<task>
|
40
|
+
return f"""<task>
|
42
41
|
{user_input}
|
43
42
|
</task>
|
44
43
|
|
@@ -52,11 +51,14 @@ List of files under path:
|
|
52
51
|
|
53
52
|
</environment_details>
|
54
53
|
"""
|
54
|
+
|
55
55
|
else:
|
56
|
-
return f"""
|
57
|
-
<task>
|
56
|
+
return f"""<task>
|
58
57
|
{user_input}
|
59
58
|
</task>
|
59
|
+
<environment_details>
|
60
|
+
Current working directory: {cwd}
|
61
|
+
</environment_details>
|
60
62
|
"""
|
61
63
|
|
62
64
|
|
pycoze/bot/tools.py
CHANGED
@@ -92,8 +92,8 @@ class ReadMultipleFilesTool(Tool):
|
|
92
92
|
def execute(self) -> str:
|
93
93
|
return_str = ""
|
94
94
|
for path in self.params["paths_list"]:
|
95
|
+
path = resolve_relative_path(self.cwd, path)
|
95
96
|
if os.path.exists(path):
|
96
|
-
path = resolve_relative_path(self.cwd, path)
|
97
97
|
content = read_local_file(path)
|
98
98
|
return_str += f"The content of the file [[{path}]] is:\n{content}\n\n\n"
|
99
99
|
else:
|
@@ -12,12 +12,12 @@ 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=
|
16
|
-
pycoze/bot/chat_base.py,sha256=
|
15
|
+
pycoze/bot/chat.py,sha256=VoYFhO-vYFeQIPbnUI6cRgVQTCihUcDLDK9HK2_VstI,5804
|
16
|
+
pycoze/bot/chat_base.py,sha256=abCJvqEtShQpARefTfRTIrKCohN78nWztb2MvX3R-tc,9714
|
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
|
20
|
-
pycoze/bot/tools.py,sha256=
|
20
|
+
pycoze/bot/tools.py,sha256=Pet8QbJ2E-qvoIEZ61-IZSOkjTi9elwSB5-2pAQmrZM,10311
|
21
21
|
pycoze/reference/__init__.py,sha256=zgqGqvmA9HaqytEM33B6vi0kQVk8IiCwJaXa22xsFz8,114
|
22
22
|
pycoze/reference/bot.py,sha256=UZK24Qm8kpqpwXJy_zNZeTEEDee05luXdSBeUm0NCt0,2029
|
23
23
|
pycoze/reference/lib.py,sha256=T-oBOKxkus5dTouc0oDgfRzUyi6aTyY-FF4yX7SzF5M,3755
|
@@ -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.383.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
37
|
+
pycoze-0.1.383.dist-info/METADATA,sha256=g0yvgRVvFJDVG3AgLVqoM-rB0c_bsVvDT6FXOCCjov8,854
|
38
|
+
pycoze-0.1.383.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
39
|
+
pycoze-0.1.383.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
40
|
+
pycoze-0.1.383.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|