pycoze 0.1.250__py3-none-any.whl → 0.1.251__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -92,7 +92,7 @@ def create_openai_func_call_agent_executor(
92
92
 
93
93
  return [SystemMessage(content=system_message)] + msgs
94
94
 
95
- if tools:
95
+ if tools and tool_compatibility_mode:
96
96
  llm_with_tools = llm.bind(tools=[convert_to_openai_tool(t) for t in tools])
97
97
  else:
98
98
  llm_with_tools = llm
@@ -113,8 +113,6 @@ def create_openai_func_call_agent_executor(
113
113
  return 'continue'
114
114
  return 'end'
115
115
 
116
-
117
-
118
116
  # Define the function to execute tools
119
117
  async def call_tool(messages):
120
118
  actions: list[ToolInvocation] = []
@@ -26,7 +26,7 @@ class Runnable(RunnableBinding):
26
26
  )
27
27
  agent_executor = agent_executor.with_config({"recursion_limit": 50})
28
28
  super().__init__(
29
- tools=tools if tool_compatibility_mode else [],
29
+ tools=tools,
30
30
  llm=llm,
31
31
  agent_execution_mode=agent_execution_mode,
32
32
  assistant_message=assistant_message,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycoze
3
- Version: 0.1.250
3
+ Version: 0.1.251
4
4
  Summary: Package for pycoze only!
5
5
  Author: Yuan Jie Xiong
6
6
  Author-email: aiqqqqqqq@qq.com
@@ -10,11 +10,11 @@ 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
13
- pycoze/bot/agent/assistant.py,sha256=_a5N9M-wsH-pftWRHDVGidyKUtyVPsk2g4Bn193tSyc,1182
13
+ pycoze/bot/agent/assistant.py,sha256=3iLxnRvf_ia0cP-FHK5Fv4ylltlnzPq1KscRCFYqjkc,1147
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=wKL--vfOv82G7vvdm-R50UCKCYLoT9E3wqeSI5ev9P4,7009
17
+ pycoze/bot/agent/agent_types/openai_func_call_agent.py,sha256=mxoxgPLMDiH2e4FRJ3Pxmsodszwcs9c1uUGyV872UoY,7027
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.250.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
33
- pycoze-0.1.250.dist-info/METADATA,sha256=Pn-CEEiVEf6DKGipPxZlmpSh7pzkPaqIiHm9m-3m86c,699
34
- pycoze-0.1.250.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
35
- pycoze-0.1.250.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
36
- pycoze-0.1.250.dist-info/RECORD,,
32
+ pycoze-0.1.251.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
33
+ pycoze-0.1.251.dist-info/METADATA,sha256=xz3IfXR4YCD8QNZsgjq42YLatRiSBk6qirSg9-RMD94,699
34
+ pycoze-0.1.251.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
35
+ pycoze-0.1.251.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
36
+ pycoze-0.1.251.dist-info/RECORD,,