pycoze 0.1.246__py3-none-any.whl → 0.1.248__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.
@@ -103,6 +103,8 @@ def create_openai_func_call_agent_executor(
103
103
  def should_continue(messages):
104
104
  # If there is no FuncCall, then we finish
105
105
  last_message = messages[-1]
106
+ if tool_compatibility_mode and "tool_calls" in last_message.additional_kwargs:
107
+ del last_message.additional_kwargs["tool_calls"]
106
108
  if last_message.content.strip().endswith("```"):
107
109
  last_message.content = last_message.content + "\n\n" # 避免影响阅读
108
110
  tools = get_tools(last_message)
@@ -118,6 +120,8 @@ def create_openai_func_call_agent_executor(
118
120
  # Based on the continue condition
119
121
  # we know the last message involves a FuncCall
120
122
  last_message = messages[-1]
123
+ if tool_compatibility_mode and "tool_calls" in last_message.additional_kwargs:
124
+ del last_message.additional_kwargs["tool_calls"]
121
125
  for tool_call in get_tools(last_message):
122
126
  function = tool_call["function"]
123
127
  function_name = function["name"]
pycoze/bot/agent_chat.py CHANGED
@@ -95,7 +95,7 @@ async def agent_chat(bot_setting_file, history):
95
95
  prompt += f"\n```json\n{json.dumps(convert_to_openai_tool(t))}\n```"
96
96
  agent = Runnable(
97
97
  agent_execution_mode="FuncCall",
98
- tools=abilities if cfg["toolCompatibilityMode"] else [],
98
+ tools=abilities,
99
99
  llm=chat,
100
100
  assistant_message=prompt,
101
101
  tool_compatibility_mode=cfg["toolCompatibilityMode"],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycoze
3
- Version: 0.1.246
3
+ Version: 0.1.248
4
4
  Summary: Package for pycoze only!
5
5
  Author: Yuan Jie Xiong
6
6
  Author-email: aiqqqqqqq@qq.com
@@ -6,7 +6,7 @@ pycoze/ai/llm/chat.py,sha256=izriC7nCp5qeJRqcUVQBVqTHiH6MJS77ROzGBJufdNI,5133
6
6
  pycoze/ai/llm/text_to_image_prompt.py,sha256=0bx2C_YRvjAo7iphHGp1-pmGKsKqwur7dM0t3SiA8kA,3398
7
7
  pycoze/ai/llm/think.py,sha256=sUgTBdGzcZtL3r-Wx8M3lDuVUmDVz8g3qC0VU8uiKAI,5143
8
8
  pycoze/bot/__init__.py,sha256=6HHMxDQVOyZM9dtSjQm9tjGnhj4h7CixD0JOvEwTi48,41
9
- pycoze/bot/agent_chat.py,sha256=XFsU3y9Lexad5FBGV_3xkd4AaP5H2cUjrG-o4KG4kzU,4239
9
+ pycoze/bot/agent_chat.py,sha256=ZQeuNHwFAKB8XO4_R1lytf_kE43hvtI7AzOK4NPysWE,4199
10
10
  pycoze/bot/bot.py,sha256=fmcgnWcYTFeOxDuAwqWhFhOJzv4mAyJGLqbod-nkhJE,862
11
11
  pycoze/bot/agent/__init__.py,sha256=3wE8_FFQS8j2BY-g9Cr-onV0POEvDRZaw_NCzpqrNus,265
12
12
  pycoze/bot/agent/agent.py,sha256=chUgNZh6v6375L_Y2dBEAaLJyfmw4SygYjVVrDN8VIk,3548
@@ -14,7 +14,7 @@ pycoze/bot/agent/assistant.py,sha256=3iLxnRvf_ia0cP-FHK5Fv4ylltlnzPq1KscRCFYqjkc
14
14
  pycoze/bot/agent/chat.py,sha256=mubOCAHvA6VtyE6N40elI6KrP6A69uB_G6ihE3G_Vi4,860
15
15
  pycoze/bot/agent/agent_types/__init__.py,sha256=zmU2Kmrv5mCdfg-QlPn2H6pWxbGeq8s7YTqLhpzJC6k,179
16
16
  pycoze/bot/agent/agent_types/const.py,sha256=BfUKPrhAHREoMLHuFNG2bCIEkC1-f7K0LEqNg4RwiRE,70
17
- pycoze/bot/agent/agent_types/openai_func_call_agent.py,sha256=CoEuA0491aTV63nxJpyCjGBeyxtP-eQTsUHyHLRcFn4,6681
17
+ pycoze/bot/agent/agent_types/openai_func_call_agent.py,sha256=M7SiKHqURu2GVMf_9kVTNiqg0dJ1-lwWaYruWKUj20Y,6981
18
18
  pycoze/reference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  pycoze/reference/bot.py,sha256=BDflTV3zYoZqWnJpD5lMM_1vU_5b20M3XiFt1p-RHWM,2427
20
20
  pycoze/reference/lib.py,sha256=0xQJTLTHedGzQBsjuTFNBVqYc4-8Yl65gGCrAhWyOX8,2155
@@ -29,8 +29,8 @@ pycoze/utils/__init__.py,sha256=Gi5EnrWZGMD2JRejgV4c_VLCXyvA2wwBFI_niDF5MUE,110
29
29
  pycoze/utils/arg.py,sha256=GtfGbMTMdaK75Fwh6MpUe1pCA5X6Ep4LFG7a72YrzjI,525
30
30
  pycoze/utils/env.py,sha256=W04lhvTHhAAC6EldP6kk2xrctqtu8K6kl1vDLZDNeh8,561
31
31
  pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
32
- pycoze-0.1.246.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
33
- pycoze-0.1.246.dist-info/METADATA,sha256=mga-MZW4Dn4qBDBs3Szj2N0ZGDiZoJrhkMoKrvfvVzg,699
34
- pycoze-0.1.246.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
35
- pycoze-0.1.246.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
36
- pycoze-0.1.246.dist-info/RECORD,,
32
+ pycoze-0.1.248.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
33
+ pycoze-0.1.248.dist-info/METADATA,sha256=hoIJQppIuqdSy7vgWtxVlEi1wbrwrpe7FY1vd0JDxgA,699
34
+ pycoze-0.1.248.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
35
+ pycoze-0.1.248.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
36
+ pycoze-0.1.248.dist-info/RECORD,,