beswarm 0.1.28__py3-none-any.whl → 0.1.30__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.
beswarm/aient/setup.py CHANGED
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
4
4
 
5
5
  setup(
6
6
  name="aient",
7
- version="1.0.87",
7
+ version="1.0.89",
8
8
  description="Aient: The Awakening of Agent.",
9
9
  long_description=Path.open(Path("README.md"), encoding="utf-8").read(),
10
10
  long_description_content_type="text/markdown",
@@ -431,10 +431,12 @@ class chatgpt(BaseLLM):
431
431
 
432
432
  function_parameter = parse_function_xml(full_response)
433
433
  if function_parameter:
434
+ print("function_parameter1", function_parameter)
434
435
  function_parameter = [tool_dict for tool_dict in function_parameter if tool_dict.get("function_name", "") in self.plugins.keys()]
435
436
  invalid_tools = [tool_dict for tool_dict in function_parameter if tool_dict.get("function_name", "") not in self.plugins.keys()]
436
437
  for tool_dict in invalid_tools:
437
438
  full_response = full_response + f"\n\nFunction: {tool_dict.get('function_name', '')} does not exist! I must use existing functions. I need to try again."
439
+ print("function_parameter2", self.print_log, function_parameter)
438
440
  if self.print_log:
439
441
  print("invalid_tools", invalid_tools)
440
442
  print("full_response", full_response)
@@ -456,6 +458,11 @@ class chatgpt(BaseLLM):
456
458
  print("function_parameter", function_parameter)
457
459
  print("function_full_response", function_full_response)
458
460
 
461
+ function_parameter = [tool_dict for tool_dict in function_parameter if tool_dict.get("function_name", "") in self.plugins.keys()]
462
+
463
+ if self.print_log:
464
+ print("function_parameter3", function_parameter)
465
+
459
466
  function_response = ""
460
467
  # 定义处理单个工具调用的辅助函数
461
468
  async def process_single_tool_call(tool_name, tool_args, tool_id):
@@ -552,7 +559,7 @@ class chatgpt(BaseLLM):
552
559
  all_responses.append(f"[{tool_name}({tool_args}) Result]:\n\n{tool_response}")
553
560
 
554
561
  # 合并所有工具响应
555
- function_response = "\n\n".join(all_responses)
562
+ function_response = "\n\n".join(all_responses).strip()
556
563
 
557
564
  # 使用第一个工具的名称和参数作为历史记录
558
565
  function_call_name = tool_calls[0]['function_name']
@@ -44,7 +44,7 @@ Example: Requesting to write to frontend-config.json
44
44
  # 确保目录存在
45
45
  os.makedirs(os.path.dirname(path) or '.', exist_ok=True)
46
46
 
47
- if content.startswith("## ") and path.endswith(".md"):
47
+ if content.startswith("##") and (path.endswith(".md") or path.endswith(".txt")):
48
48
  content = "\n\n" + content
49
49
 
50
50
  # 写入文件
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: beswarm
3
- Version: 0.1.28
3
+ Version: 0.1.30
4
4
  Summary: MAS
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -1,7 +1,7 @@
1
1
  beswarm/__init__.py,sha256=HZjUOJtZR5QhMuDbq-wukQQn1VrBusNWai_ysGo-VVI,20
2
2
  beswarm/utils.py,sha256=AdDCcqAIIKQEMl7PfryVgeT9G5sHe7QNsZnrvmTGA8E,283
3
3
  beswarm/aient/main.py,sha256=SiYAIgQlLJqYusnTVEJOx1WNkSJKMImhgn5aWjfroxg,3814
4
- beswarm/aient/setup.py,sha256=mMD7sxErW_cvOWzAN-8-Q9wiW8jOqj3ynKnkAkoJsec,487
4
+ beswarm/aient/setup.py,sha256=4lZbMKvdPQzafu-RGytsoAh3OD1oIis9ZB4sJj7uU_4,487
5
5
  beswarm/aient/src/aient/__init__.py,sha256=SRfF7oDVlOOAi6nGKiJIUK6B_arqYLO9iSMp-2IZZps,21
6
6
  beswarm/aient/src/aient/core/__init__.py,sha256=NxjebTlku35S4Dzr16rdSqSTWUvvwEeACe8KvHJnjPg,34
7
7
  beswarm/aient/src/aient/core/log_config.py,sha256=kz2_yJv1p-o3lUQOwA3qh-LSc3wMHv13iCQclw44W9c,274
@@ -15,7 +15,7 @@ beswarm/aient/src/aient/core/test/test_payload.py,sha256=8jBiJY1uidm1jzL-EiK0s6U
15
15
  beswarm/aient/src/aient/models/__init__.py,sha256=ouNDNvoBBpIFrLsk09Q_sq23HR0GbLAKfGLIFmfEuXE,219
16
16
  beswarm/aient/src/aient/models/audio.py,sha256=kRd-8-WXzv4vwvsTGwnstK-WR8--vr9CdfCZzu8y9LA,1934
17
17
  beswarm/aient/src/aient/models/base.py,sha256=z-Z0pJfTN2x0cuwfvu0BdMRY9O-RmLwHEnBIJN1x4Fg,6719
18
- beswarm/aient/src/aient/models/chatgpt.py,sha256=_K1cuU6yjF2tRQievD_qYS2-laDAmsBCZlb2IYsw_ek,45100
18
+ beswarm/aient/src/aient/models/chatgpt.py,sha256=pimBAmMcTb1wggftyrJ8n3mrwMp0Id7Lddoc3Hg1NUg,45486
19
19
  beswarm/aient/src/aient/models/claude.py,sha256=thK9P8qkaaoUN3OOJ9Shw4KDs-pAGKPoX4FOPGFXva8,28597
20
20
  beswarm/aient/src/aient/models/duckduckgo.py,sha256=1l7vYCs9SG5SWPCbcl7q6pCcB5AUF_r-a4l9frz3Ogo,8115
21
21
  beswarm/aient/src/aient/models/gemini.py,sha256=chGLc-8G_DAOxr10HPoOhvVFW1RvMgHd6mt--VyAW98,14730
@@ -32,7 +32,7 @@ beswarm/aient/src/aient/plugins/read_file.py,sha256=cJxGnhcz1_gjkgeemVyixLUiCvf-
32
32
  beswarm/aient/src/aient/plugins/registry.py,sha256=YknzhieU_8nQ3oKlUSSWDB4X7t2Jx0JnqT2Jd9Xsvfk,3574
33
33
  beswarm/aient/src/aient/plugins/run_python.py,sha256=dgcUwBunMuDkaSKR5bToudVzSdrXVewktDDFUz_iIOQ,4589
34
34
  beswarm/aient/src/aient/plugins/websearch.py,sha256=yiBzqXK5X220ibR-zko3VDsn4QOnLu1k6E2YOygCeTQ,15185
35
- beswarm/aient/src/aient/plugins/write_file.py,sha256=_3GoYp-t3zfZDKZYVJq5Zddk6ayB_6c2YBB9dDOWVD8,1827
35
+ beswarm/aient/src/aient/plugins/write_file.py,sha256=qmT6iQ3mDyVAa9Sld1jfJq0KPZj0w2kRIHq0JyjpGeA,1853
36
36
  beswarm/aient/src/aient/prompt/__init__.py,sha256=GBtn6-JDT8KHFCcuPpfSNE_aGddg5p4FEyMCy4BfwGs,20
37
37
  beswarm/aient/src/aient/prompt/agent.py,sha256=WLs0KiNZs29FJ5w7N3kQZYLVEeS7K8vxIOUw06LcXVE,23825
38
38
  beswarm/aient/src/aient/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -125,7 +125,7 @@ beswarm/tools/repomap.py,sha256=CwvwoN5Swr42EzrORTTeV8MMb7mPviy4a4b0fxBu50k,4082
125
125
  beswarm/tools/search_arxiv.py,sha256=9slwBemXjEqrd7-YgVmyMijPXlkhZCybEDRVhWVQ9B0,7937
126
126
  beswarm/tools/think.py,sha256=WLw-7jNIsnS6n8MMSYUin_f-BGLENFmnKM2LISEp0co,1760
127
127
  beswarm/tools/worker.py,sha256=JZkMT4JAkrV_0-CBATLAPVZzVGEMMEM2XUTTMGmED0E,5245
128
- beswarm-0.1.28.dist-info/METADATA,sha256=w8h_tliNum4dTTgJ6lM93JoHOmOMDegh6gUCTN-s-9s,2870
129
- beswarm-0.1.28.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
130
- beswarm-0.1.28.dist-info/top_level.txt,sha256=pJw4O87wvt5882smuSO6DfByJz7FJ8SxxT8h9fHCmpo,8
131
- beswarm-0.1.28.dist-info/RECORD,,
128
+ beswarm-0.1.30.dist-info/METADATA,sha256=97klzpUZi4_dUt6b_fg0q2SVOk2sVzKLzaX5BqyBahs,2870
129
+ beswarm-0.1.30.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
130
+ beswarm-0.1.30.dist-info/top_level.txt,sha256=pJw4O87wvt5882smuSO6DfByJz7FJ8SxxT8h9fHCmpo,8
131
+ beswarm-0.1.30.dist-info/RECORD,,