beswarm 0.1.81__py3-none-any.whl → 0.1.82__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.1.30",
7
+ version="1.1.31",
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",
@@ -187,21 +187,6 @@ def async_generator_to_sync(async_gen):
187
187
  except Exception as e:
188
188
  print(f"Error during cleanup: {e}")
189
189
 
190
- def parse_tools_from_cursor_prompt(text):
191
- import json
192
- import re
193
-
194
- # 从 cursor_prompt 中提取 <tools> 标签内的 JSON 字符串
195
- tools_match = re.search(r"<tools>\n(.*?)\n</tools>", text, re.DOTALL)
196
- if tools_match:
197
- tools_json_string = tools_match.group(1).strip()
198
- try:
199
- tools_list_data = json.loads(tools_json_string, strict=False)
200
- return tools_list_data
201
- except json.JSONDecodeError as e:
202
- print(f"解析 JSON 时出错: {e}")
203
- return []
204
-
205
190
  import html
206
191
  def unescape_html(input_string: str) -> str:
207
192
  """
@@ -1,49 +1,9 @@
1
- definition = """
2
- 1. 输入分析
3
- - 您将收到一系列研究论文及其对应的代码库
4
- - 您还将收到需要实现的特定创新想法
5
-
6
- 2. 原子定义分解
7
- - 将创新想法分解为原子学术定义
8
- - 每个原子定义应该:
9
- * 是单一的、自包含的概念
10
- * 有明确的数学基础
11
- * 可以在代码中实现
12
- * 可追溯到特定论文
13
-
14
- 3. 关键概念识别
15
- - 对于上述识别的每个原子定义,按照以下步骤进行:
16
- a. 使用`transfer_to_paper_survey_agent`函数将定义传递给`论文调研代理`
17
- b. `论文调研代理`将提取相关的学术定义和数学公式
18
- c. 在`论文调研代理`提取了相关的学术定义和数学公式后,`论文调研代理`将使用`transfer_to_code_survey_agent`函数将发现转发给`代码调研代理`
19
- d. `代码调研代理`将提取相应的代码实现
20
- e. 在`代码调研代理`提取了相应的代码实现后,`代码调研代理`将使用`transfer_back_to_survey_agent`函数将所有发现转发给`调研代理`
21
- f. `调研代理`将收集并组织每个定义的笔记
22
-
23
- 4. 迭代过程
24
- - 继续此过程直到覆盖所有原子定义
25
- - 在彻底检查创新所需的所有概念之前,不要结束
26
-
27
- 5. 最终编译
28
- - 使用`case_resolved`函数合并所有收集的笔记
29
- - 确保最终输出结构良好且全面
30
-
31
- 重要注意事项:
32
- - 在进行任何分析之前,您必须首先将创新想法分解为原子定义
33
- - 每个原子定义应该具体到足以追溯到具体的数学公式和代码实现
34
- - 不要跳过或合并定义 - 每个原子概念必须单独分析
35
- - 如果您不确定定义的原子性,宁可将其进一步分解
36
- - 在进行分析之前记录您的分解理由
37
-
38
- 您的目标是创建一个完整的知识库,将理论概念与所提出创新的实际实现联系起来。
39
- """
40
-
41
- system_prompt = """
1
+ worker_system_prompt = """
42
2
  <communication>
43
3
  1. Format your responses in markdown. Use backticks to format file, directory, function, and class names.
44
4
  2. Always respond in 中文。
45
5
  3. 尽力满足user的请求,如果 user 要求你使用工具,请自行根据工具的参数要求,组织参数,将工具调用组织成xml格式,即可触发工具执行流程。如果user提供了明确的xml工具调用,请直接复述user的xml工具调用。你必须复述user的xml工具调用才能真正调用工具。
46
- 4. 禁止要求user调用工具,当你需要调用工具时,请自行组织参数,将工具调用组织成xml格式,即可触发工具执行流程。禁止自己没有使用xml格式调用工具就假定工具已经调用。
6
+ 4. 你拥有完全的工具调用自主权,也因此负有完全的责任。你必须亲自执行所有工具调用,绝对禁止以任何形式指示、请求或暗示user为你调用工具。例如,你绝不能说"请使用`write_to_file`工具将内容写入文件"这类的话。当你判断需要使用工具时,你必须自行生成该工具对应的、格式完整的XML调用代码。这是一个强制性规则,任何情况下都不能违反。
47
7
  5. 仔细阅读并理解 user 的任务描述和当前指令。user 会根据任务描述分步骤让你执行,因此请严格遵循 user 指令按步骤操作,并请勿自行完成 user 未指定的步骤。在 user 明确给出下一步指令前,绝不擅自行动或推测、执行任何未明确要求的后续步骤。完成当前 user 指定的步骤后,必须主动向 user 汇报该步骤的完成情况,并明确请求 user 提供下一步的操作指令。
48
8
  </communication>
49
9
 
@@ -130,7 +90,7 @@ instruction_system_prompt = """
130
90
  持续引导工作智能体直到任务完成。
131
91
  如果你给出了工具调用明确的指令,但是assistant没有通过xml格式调用工具,却认为自己已经调用了,请提醒他必须自己使用xml格式调用。
132
92
 
133
- 你需要称呼工作智能体为“你”,指令禁止使用疑问句,必须使用祈使句。
93
+ 你需要称呼工作智能体为"你",指令禁止使用疑问句,必须使用祈使句。
134
94
  所有回复必须使用中文。
135
95
  运行工作智能体的系统信息:{os_version}
136
96
  你的工作目录为:{workspace_path},请在指令中使用绝对路径。所有操作必须基于工作目录。
@@ -230,6 +190,48 @@ git clone https://github.com/username/project-name.git
230
190
  <work_agent_conversation_start>
231
191
  """
232
192
 
193
+
194
+ definition = """
195
+ 1. 输入分析
196
+ - 您将收到一系列研究论文及其对应的代码库
197
+ - 您还将收到需要实现的特定创新想法
198
+
199
+ 2. 原子定义分解
200
+ - 将创新想法分解为原子学术定义
201
+ - 每个原子定义应该:
202
+ * 是单一的、自包含的概念
203
+ * 有明确的数学基础
204
+ * 可以在代码中实现
205
+ * 可追溯到特定论文
206
+
207
+ 3. 关键概念识别
208
+ - 对于上述识别的每个原子定义,按照以下步骤进行:
209
+ a. 使用`transfer_to_paper_survey_agent`函数将定义传递给`论文调研代理`
210
+ b. `论文调研代理`将提取相关的学术定义和数学公式
211
+ c. 在`论文调研代理`提取了相关的学术定义和数学公式后,`论文调研代理`将使用`transfer_to_code_survey_agent`函数将发现转发给`代码调研代理`
212
+ d. `代码调研代理`将提取相应的代码实现
213
+ e. 在`代码调研代理`提取了相应的代码实现后,`代码调研代理`将使用`transfer_back_to_survey_agent`函数将所有发现转发给`调研代理`
214
+ f. `调研代理`将收集并组织每个定义的笔记
215
+
216
+ 4. 迭代过程
217
+ - 继续此过程直到覆盖所有原子定义
218
+ - 在彻底检查创新所需的所有概念之前,不要结束
219
+
220
+ 5. 最终编译
221
+ - 使用`case_resolved`函数合并所有收集的笔记
222
+ - 确保最终输出结构良好且全面
223
+
224
+ 重要注意事项:
225
+ - 在进行任何分析之前,您必须首先将创新想法分解为原子定义
226
+ - 每个原子定义应该具体到足以追溯到具体的数学公式和代码实现
227
+ - 不要跳过或合并定义 - 每个原子概念必须单独分析
228
+ - 如果您不确定定义的原子性,宁可将其进一步分解
229
+ - 在进行分析之前记录您的分解理由
230
+
231
+ 您的目标是创建一个完整的知识库,将理论概念与所提出创新的实际实现联系起来。
232
+ """
233
+
234
+
233
235
  old_instruction_system_prompt = """
234
236
  你是一个指令生成器,负责指导另一个智能体完成任务。
235
237
  你需要分析工作智能体的对话历史,并生成下一步指令。
@@ -237,7 +239,7 @@ old_instruction_system_prompt = """
237
239
  持续引导工作智能体直到任务完成。
238
240
  如果你给出了工具调用明确的指令,但是assistant没有通过xml格式调用工具,却认为自己已经调用了,请提醒他必须自己使用xml格式调用。
239
241
 
240
- 你需要称呼工作智能体为“你”,指令禁止使用疑问句,必须使用祈使句。
242
+ 你需要称呼工作智能体为"你",指令禁止使用疑问句,必须使用祈使句。
241
243
  所有回复必须使用中文。
242
244
  运行工作智能体的系统信息:{os_version}
243
245
  你的工作目录为:{workspace_path},请在指令中使用绝对路径。所有操作必须基于工作目录。
@@ -377,25 +379,4 @@ The user's OS version is win32 10.0.22631. The absolute path of the user's works
377
379
  <tools>
378
380
  [{"type": "function", "function": {"name": "codebase_search", "description": "Find snippets of code from the codebase most relevant to the search query.\nThis is a semantic search tool, so the query should ask for something semantically matching what is needed.\nIf it makes sense to only search in particular directories, please specify them in the target_directories field.\nUnless there is a clear reason to use your own search query, please just reuse the user's exact query with their wording.\nTheir exact wording/phrasing can often be helpful for the semantic search query. Keeping the same exact question format can also be helpful.", "parameters": {"type": "object", "properties": {"query": {"type": "string", "description": "The search query to find relevant code. You should reuse the user's exact query/most recent message with their wording unless there is a clear reason not to."}, "target_directories": {"type": "array", "items": {"type": "string"}, "description": "Glob patterns for directories to search over"}, "explanation": {"type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal."}}, "required": ["query"]}}}, {"type": "function", "function": {"name": "read_file", "description": "Read the contents of a file. the output of this tool call will be the 1-indexed file contents from start_line_one_indexed to end_line_one_indexed_inclusive, together with a summary of the lines outside start_line_one_indexed and end_line_one_indexed_inclusive.\nNote that this call can view at most 250 lines at a time.\n\nWhen using this tool to gather information, it's your responsibility to ensure you have the COMPLETE context. Specifically, each time you call this command you should:\n1) Assess if the contents you viewed are sufficient to proceed with your task.\n2) Take note of where there are lines not shown.\n3) If the file contents you have viewed are insufficient, and you suspect they may be in lines not shown, proactively call the tool again to view those lines.\n4) When in doubt, call this tool again to gather more information. Remember that partial file views may miss critical dependencies, imports, or functionality.\n\nIn some cases, if reading a range of lines is not enough, you may choose to read the entire file.\nReading entire files is often wasteful and slow, especially for large files (i.e. more than a few hundred lines). So you should use this option sparingly.\nReading the entire file is not allowed in most cases. You are only allowed to read the entire file if it has been edited or manually attached to the conversation by the user.", "parameters": {"type": "object", "properties": {"relative_workspace_path": {"type": "string", "description": "The path of the file to read, relative to the workspace root."}, "should_read_entire_file": {"type": "boolean", "description": "Whether to read the entire file. Defaults to false."}, "start_line_one_indexed": {"type": "integer", "description": "The one-indexed line number to start reading from (inclusive)."}, "end_line_one_indexed_inclusive": {"type": "integer", "description": "The one-indexed line number to end reading at (inclusive)."}, "explanation": {"type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal."}}, "required": ["relative_workspace_path", "should_read_entire_file", "start_line_one_indexed", "end_line_one_indexed_inclusive"]}}}, {"type": "function", "function": {"name": "run_terminal_cmd", "description": "Propose a command to run on behalf of the user.\nThe user may reject it if it is not to their liking, or may modify the command before approving it. If they do change it, take those changes into account.\nThe actual command will not execute until the user approves it. The user may not approve it immediately. Do not assume the command has started running.\nIf the step is waiting for user approval, it has not started running.\nAdhere to the following guidelines:\n1. Based on the contents of the conversation, you will be told if you are in the same shell as a previous step or a different shell.\n2. If in a new shell, you should `cd` to the appropriate directory and do necessary setup in addition to running the command.\n3. If in the same shell, the state will persist (eg. if you cd in one step, that cwd is persisted next time you invoke this tool).\n4. For ANY commands that would use a pager or require user interaction, you should append ` | cat` to the command (or whatever is appropriate). Otherwise, the command will break. You MUST do this for: git, less, head, tail, more, etc.\n5. For commands that are long running/expected to run indefinitely until interruption, please run them in the background. To run jobs in the background, set `is_background` to true rather than changing the details of the command.\n6. Dont include any newlines in the command.", "parameters": {"type": "object", "properties": {"command": {"type": "string", "description": "The terminal command to execute"}, "is_background": {"type": "boolean", "description": "Whether the command should be run in the background"}, "explanation": {"type": "string", "description": "One sentence explanation as to why this command needs to be run and how it contributes to the goal."}, "require_user_approval": {"type": "boolean", "description": "Whether the user must approve the command before it is executed. Only set this to false if the command is safe and if it matches the user's requirements for commands that should be executed automatically."}}, "required": ["command", "is_background", "require_user_approval"]}}}, {"type": "function", "function": {"name": "list_dir", "description": "List the contents of a directory.", "parameters": {"type": "object", "properties": {"relative_workspace_path": {"type": "string", "description": "Path to list contents of, relative to the workspace root."}, "explanation": {"type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal."}}, "required": ["relative_workspace_path"]}}}, {"type": "function", "function": {"name": "grep_search", "description": "Fast text-based regex search that finds exact pattern matches within files or directories, utilizing the ripgrep command for efficient searching.\nTo avoid overwhelming output, the results are capped at 50 matches.\nUse the include or exclude patterns to filter the search scope by file type or specific paths.\nThis is best for finding exact text matches or regex patterns. This is preferred over semantic search when we know the exact symbol/function name/etc. to search in some set of directories/file types.", "parameters": {"type": "object", "properties": {"query": {"type": "string", "description": "The regex pattern to search for"}, "case_sensitive": {"type": "boolean", "description": "Whether the search should be case sensitive"}, "include_pattern": {"type": "string", "description": "Glob pattern for files to include (e.g. '*.ts' for TypeScript files)"}, "exclude_pattern": {"type": "string", "description": "Glob pattern for files to exclude"}, "explanation": {"type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal."}}, "required": ["query"]}}}, {"type": "function", "function": {"name": "edit_file", "description": "Use this tool to propose an edit to an existing file.\n\nThis will be read by a less intelligent model, which will quickly apply the edit. You should make it clear what the edit is, while also minimizing the unchanged code you write.\nWhen writing the edit, you should specify each edit in sequence, with the special comment `// ... existing code ...` to represent unchanged code in between edited lines.\n\nFor example:\n\n```\n// ... existing code ...\nFIRST_EDIT\n// ... existing code ...\nSECOND_EDIT\n// ... existing code ...\nTHIRD_EDIT\n// ... existing code ...\n```\n\nYou should still bias towards repeating as few lines of the original file as possible to convey the change.\nBut, each edit should contain sufficient context of unchanged lines around the code you're editing to resolve ambiguity.\nDO NOT omit spans of pre-existing code (or comments) without using the `// ... existing code ...` comment to indicate its absence. If you omit the existing code comment, the model may inadvertently delete these lines.\nMake sure it is clear what the edit should be, and where it should be applied.\n\nYou should specify the following arguments before the others: [target_file]", "parameters": {"type": "object", "properties": {"target_file": {"type": "string", "description": "The target file to modify. Always specify the target file as the first argument and use the relative path in the workspace of the file to edit"}, "instructions": {"type": "string", "description": "A single sentence instruction describing what you am going to do for the sketched edit. This is used to assist the less intelligent model in applying the edit. Please use the first person to describe what you am going to do. Dont repeat what you have said previously in normal messages. And use it to disambiguate uncertainty in the edit."}, "code_edit": {"type": "string", "description": "Specify ONLY the precise lines of code that you wish to edit. **NEVER specify or write out unchanged code**. Instead, represent all unchanged code using the comment of the language you're editing in - example: `// ... existing code ...`"}}, "required": ["target_file", "instructions", "code_edit"]}}}, {"type": "function", "function": {"name": "delete_file", "description": "Deletes a file at the specified path. The operation will fail gracefully if:\n - The file doesn't exist\n - The operation is rejected for security reasons\n - The file cannot be deleted", "parameters": {"type": "object", "properties": {"target_file": {"type": "string", "description": "The path of the file to delete, relative to the workspace root."}, "explanation": {"type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal."}}, "required": ["target_file"]}}}]
379
381
  </tools>
380
- """
381
-
382
-
383
- def parse_tools_from_cursor_prompt(text):
384
- import json
385
- import re
386
-
387
- # 从 cursor_prompt 中提取 <tools> 标签内的 JSON 字符串
388
- tools_match = re.search(r"<tools>\n(.*?)\n</tools>", text, re.DOTALL)
389
- if tools_match:
390
- tools_json_string = tools_match.group(1).strip()
391
- try:
392
- tools_list_data = json.loads(tools_json_string, strict=False)
393
- return tools_list_data
394
- except json.JSONDecodeError as e:
395
- print(f"解析 JSON 时出错: {e}")
396
- return []
397
-
398
- if __name__ == "__main__":
399
- # 从 cursor_prompt 中提取 <tools> 标签内的 JSON 字符串
400
- tools_list_data = parse_tools_from_cursor_prompt(cursor_prompt)
401
- print(tools_list_data)
382
+ """
beswarm/tools/worker.py CHANGED
@@ -7,7 +7,7 @@ from datetime import datetime
7
7
 
8
8
  from ..aient.src.aient.models import chatgpt
9
9
  from ..aient.src.aient.plugins import register_tool, get_function_call_list
10
- from ..aient.src.aient.prompt import system_prompt, instruction_system_prompt
10
+ from ..prompt import worker_system_prompt, instruction_system_prompt
11
11
  from ..utils import extract_xml_content, get_current_screen_image_message
12
12
 
13
13
  @register_tool()
@@ -30,7 +30,7 @@ async def worker(goal, tools, work_dir, cache_messages=None):
30
30
  start_time = datetime.now()
31
31
 
32
32
  tools_json = [value for _, value in get_function_call_list(tools).items()]
33
- work_agent_system_prompt = system_prompt.format(
33
+ work_agent_system_prompt = worker_system_prompt.format(
34
34
  os_version=platform.platform(),
35
35
  workspace_path=work_dir,
36
36
  shell=os.getenv('SHELL', 'Unknown'),
@@ -156,14 +156,14 @@ async def worker(goal, tools, work_dir, cache_messages=None):
156
156
  end_time = datetime.now()
157
157
  total_time = end_time - start_time
158
158
  print(f"\n任务开始时间: {start_time.strftime('%Y-%m-%d %H:%M:%S')}")
159
- print(f"\n任务结束时间: {end_time.strftime('%Y-%m-%d %H:%M:%S')}")
159
+ print(f"任务结束时间: {end_time.strftime('%Y-%m-%d %H:%M:%S')}")
160
160
  print(f"总用时: {total_time}")
161
161
  return "任务已完成"
162
162
 
163
163
  async def worker_gen(goal, tools, work_dir, cache_messages=None):
164
164
  start_time = datetime.now()
165
165
  tools_json = [value for _, value in get_function_call_list(tools).items()]
166
- work_agent_system_prompt = system_prompt.format(
166
+ work_agent_system_prompt = worker_system_prompt.format(
167
167
  os_version=platform.platform(),
168
168
  workspace_path=work_dir,
169
169
  shell=os.getenv('SHELL', 'Unknown'),
@@ -293,5 +293,5 @@ async def worker_gen(goal, tools, work_dir, cache_messages=None):
293
293
  end_time = datetime.now()
294
294
  total_time = end_time - start_time
295
295
  print(f"\n任务开始时间: {start_time.strftime('%Y-%m-%d %H:%M:%S')}")
296
- print(f"\n任务结束时间: {end_time.strftime('%Y-%m-%d %H:%M:%S')}")
296
+ print(f"任务结束时间: {end_time.strftime('%Y-%m-%d %H:%M:%S')}")
297
297
  print(f"总用时: {total_time}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: beswarm
3
- Version: 0.1.81
3
+ Version: 0.1.82
4
4
  Summary: MAS
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -1,7 +1,8 @@
1
1
  beswarm/__init__.py,sha256=HZjUOJtZR5QhMuDbq-wukQQn1VrBusNWai_ysGo-VVI,20
2
+ beswarm/prompt.py,sha256=s5MEb4mxKqLJvBCC6diW9LSjKHC3kkUCjAzQEBghUCE,29258
2
3
  beswarm/utils.py,sha256=YBuoJC240LNKTTCvkoZjohylT71PM6QZLpZofXWLaJ0,1895
3
4
  beswarm/aient/main.py,sha256=SiYAIgQlLJqYusnTVEJOx1WNkSJKMImhgn5aWjfroxg,3814
4
- beswarm/aient/setup.py,sha256=JOpHzSrDIRNFL3Bq4eRHzZRMsUsAOiPg_zBg65UiJbE,487
5
+ beswarm/aient/setup.py,sha256=hloAgj25ppZncrA8aVDriqJ5AUY5i2P232ANA8453K8,487
5
6
  beswarm/aient/src/aient/__init__.py,sha256=SRfF7oDVlOOAi6nGKiJIUK6B_arqYLO9iSMp-2IZZps,21
6
7
  beswarm/aient/src/aient/core/__init__.py,sha256=NxjebTlku35S4Dzr16rdSqSTWUvvwEeACe8KvHJnjPg,34
7
8
  beswarm/aient/src/aient/core/log_config.py,sha256=kz2_yJv1p-o3lUQOwA3qh-LSc3wMHv13iCQclw44W9c,274
@@ -36,11 +37,9 @@ beswarm/aient/src/aient/plugins/registry.py,sha256=YknzhieU_8nQ3oKlUSSWDB4X7t2Jx
36
37
  beswarm/aient/src/aient/plugins/run_python.py,sha256=MohvdtZUTDLrHBDtJ9L2_Qu1pWAGrkbzsGmmn5tMN20,4614
37
38
  beswarm/aient/src/aient/plugins/websearch.py,sha256=llxy1U0vJiNMiKvamMr4p7IruLb3nnDR4YErz8TYimc,15215
38
39
  beswarm/aient/src/aient/plugins/write_file.py,sha256=7spYxloI_aUbeANEQK-oXrGPoBqSfsD7sdfMAWlNxhU,3656
39
- beswarm/aient/src/aient/prompt/__init__.py,sha256=GBtn6-JDT8KHFCcuPpfSNE_aGddg5p4FEyMCy4BfwGs,20
40
- beswarm/aient/src/aient/prompt/agent.py,sha256=ebHYebxbgL-WEAKUs1NPNwxlUMucF3GNNoy3eNZrtIo,29737
41
40
  beswarm/aient/src/aient/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
41
  beswarm/aient/src/aient/utils/prompt.py,sha256=UcSzKkFE4-h_1b6NofI6xgk3GoleqALRKY8VBaXLjmI,11311
43
- beswarm/aient/src/aient/utils/scripts.py,sha256=JVR6oNxYc9NnfQL0PGsL8QuhG43dwg0-rPS8NR_pyBM,36461
42
+ beswarm/aient/src/aient/utils/scripts.py,sha256=sXS0MrfRDQGAXOHW4BEwz4lUj_ORchdbVRh62XxidZQ,35939
44
43
  beswarm/aient/test/chatgpt.py,sha256=Hvl7FuDt1c74N5TVBmhErOPvJbJJzA7FNp5VoZM4u30,4957
45
44
  beswarm/aient/test/claude.py,sha256=IyB4qI1eJLwlSfDNSnt2FhbQWYyBighHUjJxEXc3osQ,1095
46
45
  beswarm/aient/test/test.py,sha256=rldnoLQdtRR8IKFSIzTti7eIK2MpPMoi9gL5qD8_K44,29
@@ -129,8 +128,8 @@ beswarm/tools/screenshot.py,sha256=u6t8FCgW5YHJ_Oc4coo8e0F3wTusWE_-H8dFh1rBq9Q,1
129
128
  beswarm/tools/search_arxiv.py,sha256=GpuIOYX8T0iRC-X-hmuR9AUJVn15WWZq864DaoC7BUc,8004
130
129
  beswarm/tools/search_web.py,sha256=B24amOnGHnmdV_6S8bw8O2PdhZRRIDtJjg-wXcfP7dQ,11859
131
130
  beswarm/tools/think.py,sha256=WLw-7jNIsnS6n8MMSYUin_f-BGLENFmnKM2LISEp0co,1760
132
- beswarm/tools/worker.py,sha256=dhhr17Uarq6fyqV4m2DLpv-xj4Vy3pT3XcB3i7ztQFo,13846
133
- beswarm-0.1.81.dist-info/METADATA,sha256=mTfVDC4hBNnacdlmGnL4cLWuijjlq2VV9Nqh3thg4jQ,3553
134
- beswarm-0.1.81.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
135
- beswarm-0.1.81.dist-info/top_level.txt,sha256=pJw4O87wvt5882smuSO6DfByJz7FJ8SxxT8h9fHCmpo,8
136
- beswarm-0.1.81.dist-info/RECORD,,
131
+ beswarm/tools/worker.py,sha256=r3QaarqUMw9EK1koUjvLXoDt9AIEwfxgPij7khSI_vA,13847
132
+ beswarm-0.1.82.dist-info/METADATA,sha256=LmrIY6UJRO9aA0seoisEs1blgjg6pucyTnW_FJTJneQ,3553
133
+ beswarm-0.1.82.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
134
+ beswarm-0.1.82.dist-info/top_level.txt,sha256=pJw4O87wvt5882smuSO6DfByJz7FJ8SxxT8h9fHCmpo,8
135
+ beswarm-0.1.82.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- from .agent import *