pycoze 0.1.56__py3-none-any.whl → 0.1.57__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pycoze/bot/agent/agent_types/openai_func_call_agent.py +52 -57
- {pycoze-0.1.56.dist-info → pycoze-0.1.57.dist-info}/METADATA +1 -1
- {pycoze-0.1.56.dist-info → pycoze-0.1.57.dist-info}/RECORD +6 -6
- {pycoze-0.1.56.dist-info → pycoze-0.1.57.dist-info}/LICENSE +0 -0
- {pycoze-0.1.56.dist-info → pycoze-0.1.57.dist-info}/WHEEL +0 -0
- {pycoze-0.1.56.dist-info → pycoze-0.1.57.dist-info}/top_level.txt +0 -0
@@ -60,65 +60,60 @@ def create_openai_func_call_agent_executor(
|
|
60
60
|
last_message = messages[-1]
|
61
61
|
if last_message.content.strip().endswith("```"):
|
62
62
|
last_message.content = last_message.content + "\n\n" # 避免影响阅读
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
63
|
+
# if not last_message.tool_calls:
|
64
|
+
# if (
|
65
|
+
# "接下来我将" in last_message.content
|
66
|
+
# or "接下来,我将" in last_message.content
|
67
|
+
# ):
|
68
|
+
# print("deepseek的bug: “接下来我将” 模式,使用a_delay_function骗过llm")
|
69
|
+
# last_message.additional_kwargs["tool_calls"] = (
|
70
|
+
# last_message.tool_calls
|
71
|
+
# ) = [
|
72
|
+
# {
|
73
|
+
# "function": {"name": "a_delay_function", "arguments": "{}"},
|
74
|
+
# "id": random.randint(0, 1000000),
|
75
|
+
# }
|
76
|
+
# ]
|
77
|
+
# return "continue"
|
78
|
+
if '"name"' in last_message.content and '"parameters":' in last_message.content:
|
79
|
+
print("deepseek的bug: name 和 paremeters 模式")
|
80
|
+
all_json = get_all_markdown_json(last_message.content)
|
81
|
+
tool_calls = []
|
82
|
+
for tool_call in all_json:
|
83
|
+
if "name" not in tool_call or "parameters" not in tool_call:
|
84
|
+
return "end"
|
85
|
+
tool_call["arguments"] = json.dumps(tool_call["parameters"])
|
86
|
+
tool_call.pop("parameters")
|
87
|
+
tool_calls.append(
|
88
|
+
{
|
89
|
+
"function": tool_call,
|
90
|
+
"id": random.randint(0, 1000000),
|
91
|
+
}
|
92
|
+
)
|
93
|
+
last_message.tool_calls = tool_calls
|
94
|
+
last_message.additional_kwargs["tool_calls"] = tool_calls
|
95
|
+
return "continue"
|
96
|
+
if "<|tool▁sep|>" in last_message.content:
|
97
|
+
print("deepseek的bug: <|tool▁sep|> 模式")
|
98
|
+
name = (
|
99
|
+
last_message.content.split("<|tool▁sep|>")[1].split("```")[0].strip()
|
100
|
+
)
|
101
|
+
all_json = get_all_markdown_json(last_message.content)
|
102
|
+
tool_calls = []
|
103
|
+
for argument in all_json:
|
104
|
+
tool_calls.append(
|
105
|
+
{
|
106
|
+
"function": {
|
107
|
+
"name": name,
|
108
|
+
"arguments": json.dumps(argument),
|
109
|
+
},
|
110
|
+
"id": random.randint(0, 1000000),
|
111
|
+
}
|
105
112
|
)
|
106
|
-
all_json = get_all_markdown_json(last_message.content)
|
107
|
-
tool_calls = []
|
108
|
-
for argument in all_json:
|
109
|
-
tool_calls.append(
|
110
|
-
{
|
111
|
-
"function": {
|
112
|
-
"name": name,
|
113
|
-
"arguments": json.dumps(argument),
|
114
|
-
},
|
115
|
-
"id": random.randint(0, 1000000),
|
116
|
-
}
|
117
|
-
)
|
118
113
|
|
119
|
-
|
120
|
-
|
121
|
-
|
114
|
+
last_message.additional_kwargs["tool_calls"] = tool_calls
|
115
|
+
last_message.tool_calls = tool_calls
|
116
|
+
return "continue"
|
122
117
|
|
123
118
|
if not last_message.tool_calls:
|
124
119
|
return "end"
|
@@ -9,7 +9,7 @@ pycoze/bot/agent/agent.py,sha256=7xnz4a8LDyAVU0O3tS6n7_jSnr_lukQxfNR2znCWoV4,461
|
|
9
9
|
pycoze/bot/agent/assistant.py,sha256=QLeWaPi415P9jruYOm8qcIbC94cXXAhJYmLTkyC9NTQ,1267
|
10
10
|
pycoze/bot/agent/chat.py,sha256=kc0qgcrBSXdiMy49JwThZTV-0PAvzAhiUvbI5ILiSnU,571
|
11
11
|
pycoze/bot/agent/agent_types/__init__.py,sha256=W2jTNMLqUMqgCMG0Tw0d8n7WpsbsnIonqaPR-YLegLU,210
|
12
|
-
pycoze/bot/agent/agent_types/openai_func_call_agent.py,sha256=
|
12
|
+
pycoze/bot/agent/agent_types/openai_func_call_agent.py,sha256=9z884NGi79R1Zz5tIMHqnw_qoXGwhmDmnpEs9xfIXEw,7995
|
13
13
|
pycoze/bot/agent/agent_types/react_agent.py,sha256=AnjHwHXVwLAm77ndglJGi4rQhqDGWaLuUfl46uZVSzM,6749
|
14
14
|
pycoze/bot/agent/agent_types/react_prompt.py,sha256=jyovokGaPzNIe5bvTRvn0gmsWLx5kpDIPmRwmEMCl-M,2142
|
15
15
|
pycoze/gpu/__init__.py,sha256=cuxwDdz2Oo-VcwZ50FtFtEIJXdqoz2el-n0QpSt_NMc,75
|
@@ -22,8 +22,8 @@ pycoze/ui/ui_def.py,sha256=CNFYH8NC-WYmbceIPpxsRr9H6O006pMKukx7U-BOE1Q,3744
|
|
22
22
|
pycoze/utils/__init__.py,sha256=KExBkotf23dr2NfTEouWke5nJB1q2IuDXgHrmuyd95k,73
|
23
23
|
pycoze/utils/arg.py,sha256=rRujm1zKc0XlnNlpIJ6JAAaFiTzDGmL_RliIpSc5OD8,724
|
24
24
|
pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
|
25
|
-
pycoze-0.1.
|
26
|
-
pycoze-0.1.
|
27
|
-
pycoze-0.1.
|
28
|
-
pycoze-0.1.
|
29
|
-
pycoze-0.1.
|
25
|
+
pycoze-0.1.57.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
26
|
+
pycoze-0.1.57.dist-info/METADATA,sha256=TNIR3oyyjodTN_I3qa-SqyjjnlKEsXqC6sCK2fb255Q,719
|
27
|
+
pycoze-0.1.57.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
28
|
+
pycoze-0.1.57.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
29
|
+
pycoze-0.1.57.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|