pycoze 0.1.56__py3-none-any.whl → 0.1.58__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
- # 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 (
79
- '"name"' in last_message.content
80
- and '"parameters":' in last_message.content
81
- ):
82
- print("deepseek的bug: name paremeters 模式")
83
- all_json = get_all_markdown_json(last_message.content)
84
- tool_calls = []
85
- for tool_call in all_json:
86
- if "name" not in tool_call or "parameters" not in tool_call:
87
- return "end"
88
- tool_call["arguments"] = json.dumps(tool_call["parameters"])
89
- tool_call.pop("parameters")
90
- tool_calls.append(
91
- {
92
- "function": tool_call,
93
- "id": random.randint(0, 1000000),
94
- }
95
- )
96
- last_message.tool_calls = tool_calls
97
- last_message.additional_kwargs["tool_calls"] = tool_calls
98
- return "continue"
99
- if "<|tool▁sep|>" in last_message.content:
100
- print("deepseek的bug: <|tool▁sep|> 模式")
101
- name = (
102
- last_message.content.split("<|tool▁sep|>")[1]
103
- .split("```")[0]
104
- .strip()
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
- last_message.additional_kwargs["tool_calls"] = tool_calls
120
- last_message.tool_calls = tool_calls
121
- return "continue"
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"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycoze
3
- Version: 0.1.56
3
+ Version: 0.1.58
4
4
  Summary: Package for pycoze only!
5
5
  Author: Yuan Jie Xiong
6
6
  Author-email: aiqqqqqqq@qq.com
@@ -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=WEE5BcxAxtGXz9itHaFzUb_oXEw4BsS-qCrbURkS0jg,8297
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.56.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
26
- pycoze-0.1.56.dist-info/METADATA,sha256=TXSB2hYdFXA9X_7mdE4ru75Q5w7LYhfy_WDrpUEPzwA,719
27
- pycoze-0.1.56.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
28
- pycoze-0.1.56.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
29
- pycoze-0.1.56.dist-info/RECORD,,
25
+ pycoze-0.1.58.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
26
+ pycoze-0.1.58.dist-info/METADATA,sha256=yab-43itzAxZyXOG9n48QeDVv6ZtVy3nH-VyBqgb-2w,719
27
+ pycoze-0.1.58.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
28
+ pycoze-0.1.58.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
29
+ pycoze-0.1.58.dist-info/RECORD,,