swarms 7.5.5__py3-none-any.whl → 7.5.6__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.
swarms/agents/__init__.py CHANGED
@@ -1,3 +1,15 @@
1
+ from swarms.agents.consistency_agent import SelfConsistencyAgent
2
+
3
+ # from swarms.agents.tool_agent import ToolAgent
4
+ from swarms.agents.create_agents_from_yaml import (
5
+ create_agents_from_yaml,
6
+ )
7
+ from swarms.agents.i_agent import IterativeReflectiveExpansion
8
+ from swarms.agents.reasoning_agents import (
9
+ ReasoningAgentRouter,
10
+ agent_types as reasoning_agent_types,
11
+ )
12
+ from swarms.agents.reasoning_duo import ReasoningDuo
1
13
  from swarms.structs.stopping_conditions import (
2
14
  check_cancelled,
3
15
  check_complete,
@@ -11,15 +23,6 @@ from swarms.structs.stopping_conditions import (
11
23
  check_success,
12
24
  )
13
25
 
14
- # from swarms.agents.tool_agent import ToolAgent
15
- from swarms.agents.create_agents_from_yaml import (
16
- create_agents_from_yaml,
17
- )
18
-
19
- from swarms.agents.i_agent import IterativeReflectiveExpansion
20
- from swarms.agents.consistency_agent import SelfConsistencyAgent
21
- from swarms.agents.reasoning_duo import ReasoningDuo
22
-
23
26
  __all__ = [
24
27
  # "ToolAgent",
25
28
  "check_done",
@@ -36,4 +39,6 @@ __all__ = [
36
39
  "IterativeReflectiveExpansion",
37
40
  "SelfConsistencyAgent",
38
41
  "ReasoningDuo",
42
+ "ReasoningAgentRouter",
43
+ "reasoning_agent_types",
39
44
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: swarms
3
- Version: 7.5.5
3
+ Version: 7.5.6
4
4
  Summary: Swarms - TGSC
5
5
  Home-page: https://github.com/kyegomez/swarms
6
6
  License: MIT
@@ -1,5 +1,5 @@
1
1
  swarms/__init__.py,sha256=DDfir3E4H8z1PlQqpc2HzovJQtNvIAzye4Fs165J0o8,512
2
- swarms/agents/__init__.py,sha256=44U1Sx7x844KYbHsz90Ld_G3pe_n8q-8z7WWkGqZcWQ,899
2
+ swarms/agents/__init__.py,sha256=HVR2hOuRVM_XcHtnbLwrrmhlrfBkhdDnZR-GHrVEqMI,1070
3
3
  swarms/agents/agent_print.py,sha256=SXqWA2ZzXwRFdv8hkuYwOPMTasvaGTG6U29413qRCAA,918
4
4
  swarms/agents/ape_agent.py,sha256=1kz_65LJgjLlY1yv2WLBeVMs7sP9BgEVWk0w1f67YLc,1563
5
5
  swarms/agents/auto_generate_swarm_config.py,sha256=7eJ873xS7PJmyreMaa5Uub8qFu-qIinuyMuogB2Ehjc,8474
@@ -176,8 +176,8 @@ swarms/utils/swarm_reliability_checks.py,sha256=MsgUULt3HYg72D0HifZNmtCyJYpLA2UD
176
176
  swarms/utils/try_except_wrapper.py,sha256=appEGu9Afy3TmdkNNXUgQ9yU9lj2j0uNkIoW0JhVzzY,3917
177
177
  swarms/utils/visualizer.py,sha256=0ylohEk62MAS6iPRaDOV03m9qo2k5J56tWlKJk_46p4,16927
178
178
  swarms/utils/wrapper_clusterop.py,sha256=PMSCVM7ZT1vgj1D_MYAe835RR3SMLYxA-si2JS02yNQ,4220
179
- swarms-7.5.5.dist-info/LICENSE,sha256=jwRtEmTWjLrEsvFB6QFdYs2cEeZPRMdj-UMOFkPF8_0,11363
180
- swarms-7.5.5.dist-info/METADATA,sha256=LFumy7bChT2KQsNWd-eXSylFWpUxpYG6vtfO5A3SQJI,103019
181
- swarms-7.5.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
182
- swarms-7.5.5.dist-info/entry_points.txt,sha256=2K0rTtfO1X1WaO-waJlXIKw5Voa_EpAL_yU0HXE2Jgc,47
183
- swarms-7.5.5.dist-info/RECORD,,
179
+ swarms-7.5.6.dist-info/LICENSE,sha256=jwRtEmTWjLrEsvFB6QFdYs2cEeZPRMdj-UMOFkPF8_0,11363
180
+ swarms-7.5.6.dist-info/METADATA,sha256=0qmkVA4FDlnoR1bzuwy9fo5z5xhtwMLZjTwJ557CaIU,103019
181
+ swarms-7.5.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
182
+ swarms-7.5.6.dist-info/entry_points.txt,sha256=2K0rTtfO1X1WaO-waJlXIKw5Voa_EpAL_yU0HXE2Jgc,47
183
+ swarms-7.5.6.dist-info/RECORD,,
File without changes