pycoze 0.1.247__py3-none-any.whl → 0.1.249__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/agent/agent_types/openai_func_call_agent.py +6 -2
- {pycoze-0.1.247.dist-info → pycoze-0.1.249.dist-info}/METADATA +1 -1
- {pycoze-0.1.247.dist-info → pycoze-0.1.249.dist-info}/RECORD +6 -6
- {pycoze-0.1.247.dist-info → pycoze-0.1.249.dist-info}/LICENSE +0 -0
- {pycoze-0.1.247.dist-info → pycoze-0.1.249.dist-info}/WHEEL +0 -0
- {pycoze-0.1.247.dist-info → pycoze-0.1.249.dist-info}/top_level.txt +0 -0
@@ -31,11 +31,10 @@ def get_all_markdown_json(content):
|
|
31
31
|
|
32
32
|
|
33
33
|
def get_tools(last_message):
|
34
|
-
print("tool_calls exist", "tool_calls" in last_message.additional_kwargs)
|
35
34
|
if "tool_calls" in last_message.additional_kwargs:
|
36
35
|
return last_message.additional_kwargs["tool_calls"]
|
37
36
|
else:
|
38
|
-
tool_calls =
|
37
|
+
tool_calls = []
|
39
38
|
if '"name"' in last_message.content and '"parameters":' in last_message.content:
|
40
39
|
print("name 和 paremeters 模式")
|
41
40
|
all_json = get_all_markdown_json(last_message.content)
|
@@ -104,9 +103,12 @@ def create_openai_func_call_agent_executor(
|
|
104
103
|
def should_continue(messages):
|
105
104
|
# If there is no FuncCall, then we finish
|
106
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"]
|
107
108
|
if last_message.content.strip().endswith("```"):
|
108
109
|
last_message.content = last_message.content + "\n\n" # 避免影响阅读
|
109
110
|
tools = get_tools(last_message)
|
111
|
+
print("tools", tools)
|
110
112
|
if last_message.tool_calls or tools:
|
111
113
|
return 'continue'
|
112
114
|
return 'end'
|
@@ -119,6 +121,8 @@ def create_openai_func_call_agent_executor(
|
|
119
121
|
# Based on the continue condition
|
120
122
|
# we know the last message involves a FuncCall
|
121
123
|
last_message = messages[-1]
|
124
|
+
if tool_compatibility_mode and "tool_calls" in last_message.additional_kwargs:
|
125
|
+
del last_message.additional_kwargs["tool_calls"]
|
122
126
|
for tool_call in get_tools(last_message):
|
123
127
|
function = tool_call["function"]
|
124
128
|
function_name = function["name"]
|
@@ -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=
|
17
|
+
pycoze/bot/agent/agent_types/openai_func_call_agent.py,sha256=wKL--vfOv82G7vvdm-R50UCKCYLoT9E3wqeSI5ev9P4,7009
|
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.
|
33
|
-
pycoze-0.1.
|
34
|
-
pycoze-0.1.
|
35
|
-
pycoze-0.1.
|
36
|
-
pycoze-0.1.
|
32
|
+
pycoze-0.1.249.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
33
|
+
pycoze-0.1.249.dist-info/METADATA,sha256=tirTnyhq4_8GaGEdnXQ7pylEc_9M1GPjT5jj6eI1E3w,699
|
34
|
+
pycoze-0.1.249.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
35
|
+
pycoze-0.1.249.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
36
|
+
pycoze-0.1.249.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|