aient 1.0.96__py3-none-any.whl → 1.0.97__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.
- aient/models/chatgpt.py +7 -2
- {aient-1.0.96.dist-info → aient-1.0.97.dist-info}/METADATA +1 -1
- {aient-1.0.96.dist-info → aient-1.0.97.dist-info}/RECORD +6 -6
- {aient-1.0.96.dist-info → aient-1.0.97.dist-info}/WHEEL +1 -1
- {aient-1.0.96.dist-info → aient-1.0.97.dist-info}/licenses/LICENSE +0 -0
- {aient-1.0.96.dist-info → aient-1.0.97.dist-info}/top_level.txt +0 -0
aient/models/chatgpt.py
CHANGED
@@ -150,8 +150,12 @@ class chatgpt(BaseLLM):
|
|
150
150
|
})
|
151
151
|
self.conversation[convo_id].append({"role": role, "tool_call_id": function_call_id, "content": message})
|
152
152
|
else:
|
153
|
-
self.conversation[convo_id]
|
154
|
-
|
153
|
+
last_user_message = self.conversation[convo_id][-1]["content"]
|
154
|
+
if last_user_message != message:
|
155
|
+
self.conversation[convo_id].append({"role": "assistant", "content": convert_functions_to_xml(function_arguments)})
|
156
|
+
self.conversation[convo_id].append({"role": "user", "content": message})
|
157
|
+
else:
|
158
|
+
self.conversation[convo_id].append({"role": "assistant", "content": "我已经执行过这个工具了,接下来我需要做什么?"})
|
155
159
|
|
156
160
|
else:
|
157
161
|
print('\033[31m')
|
@@ -430,6 +434,7 @@ class chatgpt(BaseLLM):
|
|
430
434
|
response_role = "assistant"
|
431
435
|
|
432
436
|
if self.use_plugins == True:
|
437
|
+
full_response = full_response.replace("<tool_code>", "").replace("</tool_code>", "")
|
433
438
|
function_parameter = parse_function_xml(full_response)
|
434
439
|
if function_parameter:
|
435
440
|
invalid_tools = [tool_dict for tool_dict in function_parameter if tool_dict.get("function_name", "") not in self.plugins.keys()]
|
@@ -14,7 +14,7 @@ aient/core/test/test_payload.py,sha256=8jBiJY1uidm1jzL-EiK0s6UGmW9XkdsuuKFGrwFhF
|
|
14
14
|
aient/models/__init__.py,sha256=ouNDNvoBBpIFrLsk09Q_sq23HR0GbLAKfGLIFmfEuXE,219
|
15
15
|
aient/models/audio.py,sha256=kRd-8-WXzv4vwvsTGwnstK-WR8--vr9CdfCZzu8y9LA,1934
|
16
16
|
aient/models/base.py,sha256=z-Z0pJfTN2x0cuwfvu0BdMRY9O-RmLwHEnBIJN1x4Fg,6719
|
17
|
-
aient/models/chatgpt.py,sha256
|
17
|
+
aient/models/chatgpt.py,sha256=q8dx4PD57m4a3gJHrzJr7v_Pl8X0RKDBCZHZEtIMxkk,45480
|
18
18
|
aient/models/claude.py,sha256=JezghW7y0brl4Y5qiSHvnYR5prQCFywX4RViHt39pGI,26037
|
19
19
|
aient/models/duckduckgo.py,sha256=1l7vYCs9SG5SWPCbcl7q6pCcB5AUF_r-a4l9frz3Ogo,8115
|
20
20
|
aient/models/gemini.py,sha256=chGLc-8G_DAOxr10HPoOhvVFW1RvMgHd6mt--VyAW98,14730
|
@@ -37,8 +37,8 @@ aient/prompt/agent.py,sha256=3VycHGnUq9OdR5pd_RM0AeLESlpAgBcmzrsesfq82X0,23856
|
|
37
37
|
aient/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
38
|
aient/utils/prompt.py,sha256=UcSzKkFE4-h_1b6NofI6xgk3GoleqALRKY8VBaXLjmI,11311
|
39
39
|
aient/utils/scripts.py,sha256=JbYHsU3LLtxBcuO_2MWbSgpHpCgtVQe9FGEFJpUyejc,25926
|
40
|
-
aient-1.0.
|
41
|
-
aient-1.0.
|
42
|
-
aient-1.0.
|
43
|
-
aient-1.0.
|
44
|
-
aient-1.0.
|
40
|
+
aient-1.0.97.dist-info/licenses/LICENSE,sha256=XNdbcWldt0yaNXXWB_Bakoqnxb3OVhUft4MgMA_71ds,1051
|
41
|
+
aient-1.0.97.dist-info/METADATA,sha256=IsTDS3il2LcmMByG212pao-YUKmpHsZ-PCjFsV2n-dE,4945
|
42
|
+
aient-1.0.97.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
43
|
+
aient-1.0.97.dist-info/top_level.txt,sha256=3oXzrP5sAVvyyqabpeq8A2_vfMtY554r4bVE-OHBrZk,6
|
44
|
+
aient-1.0.97.dist-info/RECORD,,
|
File without changes
|
File without changes
|