swarms 7.7.1__py3-none-any.whl → 7.7.3__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.
Files changed (40) hide show
  1. swarms/prompts/ag_prompt.py +51 -19
  2. swarms/prompts/agent_system_prompts.py +13 -4
  3. swarms/prompts/multi_agent_collab_prompt.py +18 -0
  4. swarms/prompts/prompt.py +6 -10
  5. swarms/schemas/__init__.py +0 -3
  6. swarms/structs/__init__.py +3 -8
  7. swarms/structs/agent.py +211 -163
  8. swarms/structs/aop.py +8 -1
  9. swarms/structs/auto_swarm_builder.py +271 -210
  10. swarms/structs/conversation.py +23 -56
  11. swarms/structs/hiearchical_swarm.py +93 -122
  12. swarms/structs/ma_utils.py +96 -0
  13. swarms/structs/mixture_of_agents.py +20 -103
  14. swarms/structs/{multi_agent_orchestrator.py → multi_agent_router.py} +32 -95
  15. swarms/structs/output_types.py +3 -16
  16. swarms/structs/stopping_conditions.py +30 -0
  17. swarms/structs/swarm_router.py +57 -5
  18. swarms/structs/swarming_architectures.py +576 -185
  19. swarms/telemetry/main.py +6 -2
  20. swarms/tools/mcp_client.py +209 -53
  21. swarms/tools/mcp_integration.py +1 -53
  22. swarms/utils/formatter.py +15 -1
  23. swarms/utils/generate_keys.py +64 -0
  24. swarms/utils/history_output_formatter.py +2 -0
  25. {swarms-7.7.1.dist-info → swarms-7.7.3.dist-info}/METADATA +98 -263
  26. {swarms-7.7.1.dist-info → swarms-7.7.3.dist-info}/RECORD +29 -38
  27. swarms/schemas/agent_input_schema.py +0 -149
  28. swarms/structs/agents_available.py +0 -87
  29. swarms/structs/async_workflow.py +0 -818
  30. swarms/structs/graph_swarm.py +0 -612
  31. swarms/structs/octotools.py +0 -844
  32. swarms/structs/pulsar_swarm.py +0 -469
  33. swarms/structs/queue_swarm.py +0 -193
  34. swarms/structs/swarm_builder.py +0 -395
  35. swarms/structs/swarm_load_balancer.py +0 -344
  36. swarms/structs/swarm_output_type.py +0 -23
  37. swarms/structs/talk_hier.py +0 -729
  38. {swarms-7.7.1.dist-info → swarms-7.7.3.dist-info}/LICENSE +0 -0
  39. {swarms-7.7.1.dist-info → swarms-7.7.3.dist-info}/WHEEL +0 -0
  40. {swarms-7.7.1.dist-info → swarms-7.7.3.dist-info}/entry_points.txt +0 -0
File without changes