You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -234,13 +234,13 @@ This feature is perfect for rapid prototyping, complex task decomposition, and c
234
234
|**Architecture**|**Description**|**Best For**|
235
235
|---|---|---|
236
236
|**[SequentialWorkflow](https://docs.swarms.world/en/latest/swarms/structs/sequential_workflow/)**| Agents execute tasks in a linear chain; the output of one agent becomes the input for the next. | Step-by-step processes such as data transformation pipelines and report generation. |
237
-
|**[ConcurrentWorkflow](https://docs.swarms.world/en/latest/swarms/structs/concurrent_workflow/)**| Agents run tasks simultaneously for maximum efficiency. | High-throughput tasks such as batch processing and parallel data analysis. |
237
+
|**[ConcurrentWorkflow](https://docs.swarms.world/en/latest/swarms/structs/concurrentworkflow/)**| Agents run tasks simultaneously for maximum efficiency. | High-throughput tasks such as batch processing and parallel data analysis. |
238
238
|**[AgentRearrange](https://docs.swarms.world/en/latest/swarms/structs/agent_rearrange/)**| Dynamically maps complex relationships (e.g., `a -> b, c`) between agents. | Flexible and adaptive workflows, task distribution, and dynamic routing. |
239
239
|**[GraphWorkflow](https://docs.swarms.world/en/latest/swarms/structs/graph_workflow/)**| Orchestrates agents as nodes in a Directed Acyclic Graph (DAG). | Complex projects with intricate dependencies, such as software builds. |
240
240
|**[MixtureOfAgents (MoA)](https://docs.swarms.world/en/latest/swarms/structs/moa/)**| Utilizes multiple expert agents in parallel and synthesizes their outputs. | Complex problem-solving and achieving state-of-the-art performance through collaboration. |
241
241
|**[GroupChat](https://docs.swarms.world/en/latest/swarms/structs/group_chat/)**| Agents collaborate and make decisions through a conversational interface. | Real-time collaborative decision-making, negotiations, and brainstorming. |
242
242
|**[ForestSwarm](https://docs.swarms.world/en/latest/swarms/structs/forest_swarm/)**| Dynamically selects the most suitable agent or tree of agents for a given task. | Task routing, optimizing for expertise, and complex decision-making trees. |
243
-
|**[HierarchicalSwarm](https://docs.swarms.world/en/latest/swarms/structs/hiearchical_swarm/)**| Orchestrates agents with a director who creates plans and distributes tasks to specialized worker agents. | Complex project management, team coordination, and hierarchical decision-making with feedback loops. |
243
+
|**[HierarchicalSwarm](https://docs.swarms.world/en/latest/swarms/structs/hierarchical_swarm/)**| Orchestrates agents with a director who creates plans and distributes tasks to specialized worker agents. | Complex project management, team coordination, and hierarchical decision-making with feedback loops. |
244
244
|**[HeavySwarm](https://docs.swarms.world/en/latest/swarms/structs/heavy_swarm/)**| Implements a five-phase workflow with specialized agents (Research, Analysis, Alternatives, Verification) for comprehensive task analysis. | Complex research and analysis tasks, financial analysis, strategic planning, and comprehensive reporting. |
245
245
|**[SwarmRouter](https://docs.swarms.world/en/latest/swarms/structs/swarm_router/)**| A universal orchestrator that provides a single interface to run any type of swarm with dynamic selection. | Simplifying complex workflows, switching between swarm strategies, and unified multi-agent management. |
0 commit comments