swarms 7.8.1__tar.gz → 7.8.4__tar.gz

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.
Files changed (206) hide show
  1. {swarms-7.8.1 → swarms-7.8.4}/PKG-INFO +1 -2
  2. {swarms-7.8.1 → swarms-7.8.4}/pyproject.toml +1 -2
  3. swarms-7.8.4/swarms/prompts/agent_conversation_aggregator.py +38 -0
  4. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/__init__.py +3 -0
  5. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/conversation.py +281 -234
  6. swarms-7.8.4/swarms/structs/ma_blocks.py +84 -0
  7. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/multi_agent_exec.py +25 -26
  8. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/swarm_matcher.py +4 -2
  9. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/swarm_router.py +7 -1
  10. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/base_tool.py +0 -1
  11. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/vllm_wrapper.py +15 -13
  12. {swarms-7.8.1 → swarms-7.8.4}/LICENSE +0 -0
  13. {swarms-7.8.1 → swarms-7.8.4}/README.md +0 -0
  14. {swarms-7.8.1 → swarms-7.8.4}/swarms/__init__.py +0 -0
  15. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/__init__.py +0 -0
  16. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/agent_judge.py +0 -0
  17. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/agent_print.py +0 -0
  18. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/ape_agent.py +0 -0
  19. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/auto_generate_swarm_config.py +0 -0
  20. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/consistency_agent.py +0 -0
  21. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/cort_agent.py +0 -0
  22. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/create_agents_from_yaml.py +0 -0
  23. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/flexion_agent.py +0 -0
  24. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/gkp_agent.py +0 -0
  25. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/i_agent.py +0 -0
  26. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/openai_assistant.py +0 -0
  27. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/react_agent.py +0 -0
  28. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/reasoning_agents.py +0 -0
  29. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/reasoning_duo.py +0 -0
  30. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/self_agent_builder.py +0 -0
  31. {swarms-7.8.1 → swarms-7.8.4}/swarms/agents/tool_agent.py +0 -0
  32. {swarms-7.8.1 → swarms-7.8.4}/swarms/artifacts/__init__.py +0 -0
  33. {swarms-7.8.1 → swarms-7.8.4}/swarms/artifacts/main_artifact.py +0 -0
  34. {swarms-7.8.1 → swarms-7.8.4}/swarms/cli/__init__.py +0 -0
  35. {swarms-7.8.1 → swarms-7.8.4}/swarms/cli/create_agent.py +0 -0
  36. {swarms-7.8.1 → swarms-7.8.4}/swarms/cli/main.py +0 -0
  37. {swarms-7.8.1 → swarms-7.8.4}/swarms/cli/onboarding_process.py +0 -0
  38. {swarms-7.8.1 → swarms-7.8.4}/swarms/communication/__init__.py +0 -0
  39. {swarms-7.8.1 → swarms-7.8.4}/swarms/communication/base_communication.py +0 -0
  40. {swarms-7.8.1 → swarms-7.8.4}/swarms/communication/duckdb_wrap.py +0 -0
  41. {swarms-7.8.1 → swarms-7.8.4}/swarms/communication/pulsar_struct.py +0 -0
  42. {swarms-7.8.1 → swarms-7.8.4}/swarms/communication/redis_wrap.py +0 -0
  43. {swarms-7.8.1 → swarms-7.8.4}/swarms/communication/sqlite_wrap.py +0 -0
  44. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/__init__.py +0 -0
  45. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/accountant_swarm_prompts.py +0 -0
  46. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/ag_prompt.py +0 -0
  47. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/aga.py +0 -0
  48. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/agent_judge_prompt.py +0 -0
  49. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/agent_prompt.py +0 -0
  50. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/agent_prompts.py +0 -0
  51. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/agent_self_builder_prompt.py +0 -0
  52. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/agent_system_prompts.py +0 -0
  53. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/ai_research_team.py +0 -0
  54. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/aot_prompt.py +0 -0
  55. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/autobloggen.py +0 -0
  56. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/autoswarm.py +0 -0
  57. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/chat_prompt.py +0 -0
  58. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/code_interpreter.py +0 -0
  59. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/code_spawner.py +0 -0
  60. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/debate.py +0 -0
  61. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/documentation.py +0 -0
  62. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/education.py +0 -0
  63. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/finance_agent_prompt.py +0 -0
  64. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/finance_agent_sys_prompt.py +0 -0
  65. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/growth_agent_prompt.py +0 -0
  66. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/idea2img.py +0 -0
  67. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/legal_agent_prompt.py +0 -0
  68. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/logistics.py +0 -0
  69. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/max_loop_prompt.py +0 -0
  70. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/meta_system_prompt.py +0 -0
  71. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/multi_agent_collab_prompt.py +0 -0
  72. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/multi_modal_autonomous_instruction_prompt.py +0 -0
  73. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/multi_modal_prompts.py +0 -0
  74. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/multi_modal_visual_prompts.py +0 -0
  75. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/operations_agent_prompt.py +0 -0
  76. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/paper_idea_agent.py +0 -0
  77. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/personal_stylist.py +0 -0
  78. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/product_agent_prompt.py +0 -0
  79. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/programming.py +0 -0
  80. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/project_manager.py +0 -0
  81. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/prompt.py +0 -0
  82. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/prompt_generator.py +0 -0
  83. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/prompt_generator_optimizer.py +0 -0
  84. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/python.py +0 -0
  85. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/react.py +0 -0
  86. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/react_base_prompt.py +0 -0
  87. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/reasoning_prompt.py +0 -0
  88. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/refiner_agent_prompt.py +0 -0
  89. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/safety_prompt.py +0 -0
  90. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/sales.py +0 -0
  91. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/sales_prompts.py +0 -0
  92. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/security_team.py +0 -0
  93. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/self_operating_prompt.py +0 -0
  94. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/sop_generator_agent_prompt.py +0 -0
  95. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/summaries_prompts.py +0 -0
  96. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/support_agent_prompt.py +0 -0
  97. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/swarm_manager_agent.py +0 -0
  98. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/task_assignment_prompt.py +0 -0
  99. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/tests.py +0 -0
  100. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/tools.py +0 -0
  101. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/urban_planning.py +0 -0
  102. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/visual_cot.py +0 -0
  103. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/worker_prompt.py +0 -0
  104. {swarms-7.8.1 → swarms-7.8.4}/swarms/prompts/xray_swarm_prompt.py +0 -0
  105. {swarms-7.8.1 → swarms-7.8.4}/swarms/schemas/__init__.py +0 -0
  106. {swarms-7.8.1 → swarms-7.8.4}/swarms/schemas/agent_class_schema.py +0 -0
  107. {swarms-7.8.1 → swarms-7.8.4}/swarms/schemas/agent_mcp_errors.py +0 -0
  108. {swarms-7.8.1 → swarms-7.8.4}/swarms/schemas/agent_step_schemas.py +0 -0
  109. {swarms-7.8.1 → swarms-7.8.4}/swarms/schemas/agent_tool_schema.py +0 -0
  110. {swarms-7.8.1 → swarms-7.8.4}/swarms/schemas/base_schemas.py +0 -0
  111. {swarms-7.8.1 → swarms-7.8.4}/swarms/schemas/llm_agent_schema.py +0 -0
  112. {swarms-7.8.1 → swarms-7.8.4}/swarms/schemas/mcp_schemas.py +0 -0
  113. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/agent.py +0 -0
  114. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/agent_builder.py +0 -0
  115. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/agent_registry.py +0 -0
  116. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/agent_roles.py +0 -0
  117. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/agent_router.py +0 -0
  118. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/aop.py +0 -0
  119. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/auto_swarm_builder.py +0 -0
  120. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/base_structure.py +0 -0
  121. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/base_swarm.py +0 -0
  122. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/base_workflow.py +0 -0
  123. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/batch_agent_execution.py +0 -0
  124. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/concat.py +0 -0
  125. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/concurrent_workflow.py +0 -0
  126. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/council_judge.py +0 -0
  127. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/csv_to_agent.py +0 -0
  128. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/de_hallucination_swarm.py +0 -0
  129. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/deep_research_swarm.py +0 -0
  130. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/dynamic_conversational_swarm.py +0 -0
  131. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/graph_workflow.py +0 -0
  132. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/groupchat.py +0 -0
  133. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/hiearchical_swarm.py +0 -0
  134. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/hybrid_hiearchical_peer_swarm.py +0 -0
  135. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/long_agent.py +0 -0
  136. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/ma_utils.py +0 -0
  137. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/majority_voting.py +0 -0
  138. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/malt.py +0 -0
  139. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/matrix_swarm.py +0 -0
  140. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/meme_agent_persona_generator.py +0 -0
  141. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/mixture_of_agents.py +0 -0
  142. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/model_router.py +0 -0
  143. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/multi_agent_collab.py +0 -0
  144. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/multi_agent_router.py +0 -0
  145. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/multi_model_gpu_manager.py +0 -0
  146. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/omni_agent_types.py +0 -0
  147. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/output_types.py +0 -0
  148. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/rearrange.py +0 -0
  149. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/round_robin.py +0 -0
  150. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/safe_loading.py +0 -0
  151. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/sequential_workflow.py +0 -0
  152. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/spreadsheet_swarm.py +0 -0
  153. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/stopping_conditions.py +0 -0
  154. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/swarm_arange.py +0 -0
  155. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/swarm_eval.py +0 -0
  156. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/swarm_id_generator.py +0 -0
  157. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/swarm_registry.py +0 -0
  158. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/swarming_architectures.py +0 -0
  159. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/tree_swarm.py +0 -0
  160. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/utils.py +0 -0
  161. {swarms-7.8.1 → swarms-7.8.4}/swarms/structs/various_alt_swarms.py +0 -0
  162. {swarms-7.8.1 → swarms-7.8.4}/swarms/telemetry/__init__.py +0 -0
  163. {swarms-7.8.1 → swarms-7.8.4}/swarms/telemetry/bootup.py +0 -0
  164. {swarms-7.8.1 → swarms-7.8.4}/swarms/telemetry/main.py +0 -0
  165. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/__init__.py +0 -0
  166. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/cohere_func_call_schema.py +0 -0
  167. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/create_agent_tool.py +0 -0
  168. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/func_calling_utils.py +0 -0
  169. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/func_to_str.py +0 -0
  170. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/function_util.py +0 -0
  171. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/json_former.py +0 -0
  172. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/json_utils.py +0 -0
  173. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/logits_processor.py +0 -0
  174. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/mcp_client_call.py +0 -0
  175. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/openai_func_calling_schema_pydantic.py +0 -0
  176. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/openai_tool_creator_decorator.py +0 -0
  177. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/py_func_to_openai_func_str.py +0 -0
  178. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/pydantic_to_json.py +0 -0
  179. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/tool_parse_exec.py +0 -0
  180. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/tool_registry.py +0 -0
  181. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/tool_schema_base_model.py +0 -0
  182. {swarms-7.8.1 → swarms-7.8.4}/swarms/tools/tool_utils.py +0 -0
  183. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/__init__.py +0 -0
  184. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/any_to_str.py +0 -0
  185. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/audio_processing.py +0 -0
  186. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/auto_download_check_packages.py +0 -0
  187. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/calculate_func_metrics.py +0 -0
  188. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/data_to_text.py +0 -0
  189. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/disable_logging.py +0 -0
  190. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/file_processing.py +0 -0
  191. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/formatter.py +0 -0
  192. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/function_caller_model.py +0 -0
  193. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/generate_keys.py +0 -0
  194. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/history_output_formatter.py +0 -0
  195. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/index.py +0 -0
  196. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/litellm_tokenizer.py +0 -0
  197. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/litellm_wrapper.py +0 -0
  198. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/loguru_logger.py +0 -0
  199. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/markdown_message.py +0 -0
  200. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/parse_code.py +0 -0
  201. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/pdf_to_text.py +0 -0
  202. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/str_to_dict.py +0 -0
  203. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/try_except_wrapper.py +0 -0
  204. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/visualizer.py +0 -0
  205. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/wrapper_clusterop.py +0 -0
  206. {swarms-7.8.1 → swarms-7.8.4}/swarms/utils/xml_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: swarms
3
- Version: 7.8.1
3
+ Version: 7.8.4
4
4
  Summary: Swarms - TGSC
5
5
  License: MIT
6
6
  Keywords: artificial intelligence,deep learning,optimizers,Prompt Engineering,swarms,agents,llms,transformers,multi-agent,swarms of agents,Enterprise-Grade Agents,Production-Grade Agents,Agents,Multi-Grade-Agents,Swarms,Transformers,LLMs,Prompt Engineering,Agents,Generative Agents,Generative AI,Agent Marketplace,Agent Store,quant,finance,algorithmic trading,portfolio optimization,risk management,financial modeling,machine learning for finance,natural language processing for finance
@@ -27,7 +27,6 @@ Requires-Dist: loguru
27
27
  Requires-Dist: mcp
28
28
  Requires-Dist: networkx
29
29
  Requires-Dist: numpy
30
- Requires-Dist: numpydoc
31
30
  Requires-Dist: psutil
32
31
  Requires-Dist: pydantic
33
32
  Requires-Dist: pypdf (==5.1.0)
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
5
5
 
6
6
  [tool.poetry]
7
7
  name = "swarms"
8
- version = "7.8.1"
8
+ version = "7.8.4"
9
9
  description = "Swarms - TGSC"
10
10
  license = "MIT"
11
11
  authors = ["Kye Gomez <kye@apac.ai>"]
@@ -79,7 +79,6 @@ torch = "*"
79
79
  httpx = "*"
80
80
  mcp = "*"
81
81
  aiohttp = "*"
82
- numpydoc = "*"
83
82
 
84
83
  [tool.poetry.scripts]
85
84
  swarms = "swarms.cli.main:main"
@@ -0,0 +1,38 @@
1
+ AGGREGATOR_SYSTEM_PROMPT = """You are a highly skilled Aggregator Agent responsible for analyzing, synthesizing, and summarizing conversations between multiple AI agents. Your primary goal is to distill complex multi-agent interactions into clear, actionable insights.
2
+
3
+ Key Responsibilities:
4
+ 1. Conversation Analysis:
5
+ - Identify the main topics and themes discussed
6
+ - Track the progression of ideas and problem-solving approaches
7
+ - Recognize key decisions and turning points in the conversation
8
+ - Note any conflicts, agreements, or important conclusions reached
9
+
10
+ 2. Agent Contribution Assessment:
11
+ - Evaluate each agent's unique contributions to the discussion
12
+ - Highlight complementary perspectives and insights
13
+ - Identify any knowledge gaps or areas requiring further exploration
14
+ - Recognize patterns in agent interactions and collaborative dynamics
15
+
16
+ 3. Summary Generation Guidelines:
17
+ - Begin with a high-level overview of the conversation's purpose and outcome
18
+ - Structure the summary in a logical, hierarchical manner
19
+ - Prioritize critical information while maintaining context
20
+ - Include specific examples or quotes when they significantly impact understanding
21
+ - Maintain objectivity while synthesizing different viewpoints
22
+ - Highlight actionable insights and next steps if applicable
23
+
24
+ 4. Quality Standards:
25
+ - Ensure accuracy in representing each agent's contributions
26
+ - Maintain clarity and conciseness without oversimplifying
27
+ - Use consistent terminology throughout the summary
28
+ - Preserve important technical details and domain-specific language
29
+ - Flag any uncertainties or areas needing clarification
30
+
31
+ 5. Output Format:
32
+ - Present information in a structured, easy-to-read format
33
+ - Use bullet points or sections for better readability when appropriate
34
+ - Include a brief conclusion or recommendation section if relevant
35
+ - Maintain professional and neutral tone throughout
36
+
37
+ Remember: Your role is crucial in making complex multi-agent discussions accessible and actionable. Focus on extracting value from the conversation while maintaining the integrity of each agent's contributions.
38
+ """
@@ -80,6 +80,8 @@ from swarms.structs.swarming_architectures import (
80
80
  from swarms.structs.auto_swarm_builder import AutoSwarmBuilder
81
81
  from swarms.structs.council_judge import CouncilAsAJudge
82
82
  from swarms.structs.batch_agent_execution import batch_agent_execution
83
+ from swarms.structs.ma_blocks import aggregate
84
+
83
85
 
84
86
  __all__ = [
85
87
  "Agent",
@@ -150,4 +152,5 @@ __all__ = [
150
152
  "AutoSwarmBuilder",
151
153
  "CouncilAsAJudge",
152
154
  "batch_agent_execution",
155
+ "aggregate",
153
156
  ]