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: docs/examples/index.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,6 @@ This index organizes **100+ production-ready examples** from our [Swarms Example
93
93
| Category | Example | Description |
94
94
|----------|---------|-------------|
95
95
| Agent Judge |[Agent Judge Example](https://github.com/kyegomez/swarms/blob/master/examples/single_agent/reasoning_agent_examples/agent_judge_example.py)| Agent-based decision making and evaluation system |
| Reasoning Duo |[Reasoning Duo Example](https://github.com/kyegomez/swarms/blob/master/examples/single_agent/reasoning_agent_examples/reasoning_duo_example.py)| Collaborative reasoning between two specialized agents |
|**MALT (Multi-Agent Learning Task)**| A sophisticated orchestration framework that coordinates multiple specialized AI agents to tackle complex tasks through structured conversations. |[arXiv:2412.01928](https://arxiv.org/pdf/2412.01928)|[`swarms.structs.malt`](https://docs.swarms.world/en/latest/swarms/structs/malt/)| ✅ Complete | Creator-Verifier-Refiner architecture, structured conversations, reliability guarantees |
48
47
|**[MAI-DxO (MAI Diagnostic Orchestrator)](https://arxiv.org/abs/2506.22405)**| An open-source implementation of Microsoft Research's "[Sequential Diagnosis with Language Models](https://arxiv.org/abs/2506.22405)" paper, simulating a virtual panel of physician-agents for iterative medical diagnosis. | Microsoft Research Paper |[GitHub Repository](https://github.com/The-Swarm-Corporation/Open-MAI-Dx-Orchestrator)| ✅ Complete | Cost-effective medical diagnosis, physician-agent panel, iterative refinement |
49
48
|**[AI-CoScientist](https://storage.googleapis.com/coscientist_paper/ai_coscientist.pdf)**| A multi-agent AI framework for collaborative scientific research, implementing the "Towards an AI Co-Scientist" methodology with tournament-based hypothesis evolution. | "Towards an AI Co-Scientist" Paper |[GitHub Repository](https://github.com/The-Swarm-Corporation/AI-CoScientist)| ✅ Complete | Tournament-based selection, peer review systems, hypothesis evolution, Elo rating system |
50
49
|**[Mixture of Agents (MoA)](https://arxiv.org/abs/2406.04692)**| A sophisticated multi-agent architecture that implements parallel processing with iterative refinement, combining diverse expert agents for comprehensive analysis. | Multi-agent collaboration concepts |[`swarms.structs.moa`](https://docs.swarms.world/en/latest/swarms/structs/moa/)| ✅ Complete | Parallel processing, expert agent combination, iterative refinement, state-of-the-art performance |
Copy file name to clipboardExpand all lines: docs/swarms/concept/swarm_architectures.md
-39Lines changed: 0 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,6 @@ Multi-agent architectures leverage these communication patterns to ensure that a
36
36
| Router | Routes and chooses the architecture based on the task requirements and available agents. |[Learn More](https://docs.swarms.world/en/latest/swarms/structs/swarm_router/)| Dynamic task routing, adaptive architecture selection, optimized agent allocation |
37
37
| Heavy | High-performance architecture for handling intensive computational tasks with multiple agents. |[Learn More](https://docs.swarms.world/en/latest/swarms/structs/heavy_swarm/)| Large-scale data processing, intensive computational workflows |
38
38
| Council as Judge | Multiple agents act as a council to evaluate and judge outputs or decisions. |[Learn More](https://docs.swarms.world/en/latest/swarms/structs/council_of_judges/)| Quality assessment, decision validation, peer review processes |
39
-
| MALT | Specialized architecture for complex language processing tasks across multiple agents. |[Learn More](https://docs.swarms.world/en/latest/swarms/structs/malt/)| Natural language processing, translation, content generation |
40
39
| Majority Voting | Agents vote on decisions with the majority determining the final outcome. |[Learn More](https://docs.swarms.world/en/latest/swarms/structs/majorityvoting/)| Democratic decision-making, consensus building, error reduction |
41
40
| Round Robin | Tasks are distributed cyclically among agents in a rotating order. |[Learn More](https://docs.swarms.world/en/latest/swarms/structs/round_robin_swarm/)| Load balancing, fair task distribution, resource optimization |
42
41
| Auto-Builder | Automatically constructs and configures multi-agent systems based on requirements. |[Learn More](https://docs.swarms.world/en/latest/swarms/structs/auto_swarm_builder/)| Dynamic system creation, adaptive architectures, rapid prototyping |
@@ -730,44 +729,6 @@ graph TD
730
729
731
730
---
732
731
733
-
### MALT Architecture
734
-
735
-
**Overview:**
736
-
Specialized architecture for complex language processing tasks that require coordination between multiple language-focused agents.
0 commit comments