Skip to content

Commit 680c1c0

Browse files
committed
purged interactive group chat + malt
1 parent e6cd7a8 commit 680c1c0

21 files changed

Lines changed: 2 additions & 2571 deletions

File tree

docs/examples/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ This index organizes **100+ production-ready examples** from our [Swarms Example
9393
| Category | Example | Description |
9494
|----------|---------|-------------|
9595
| 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 |
96-
| MALT | [MALT Example](https://github.com/kyegomez/swarms/blob/master/examples/single_agent/reasoning_agent_examples/malt_example.py) | Multi-agent logical reasoning framework |
9796
| 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 |
9897

9998
### Vision and Multimodal

docs/examples/paper_implementations.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ Whether you're a researcher looking to validate findings, a developer building p
4444

4545
| Paper Name | Description | Original Paper | Implementation | Status | Key Features |
4646
|------------|-------------|----------------|----------------|--------|--------------|
47-
| **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 |
4847
| **[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 |
4948
| **[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 |
5049
| **[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 |

docs/llm.txt

Lines changed: 0 additions & 1575 deletions
Large diffs are not rendered by default.

docs/mkdocs.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ extra:
7777
url: "https://docs.swarms.world/en/latest/swarms/structs/swarm_router/"
7878

7979
"Advanced Concepts":
80-
- title: "MALT (Multi-Agent Learning Task)"
81-
url: "https://github.com/kyegomez/swarms/blob/master/examples/single_agent/reasoning_agent_examples/malt_example.py"
8280
- title: "MAI-DxO (Medical AI Diagnosis)"
8381
url: "https://github.com/The-Swarm-Corporation/Open-MAI-Dx-Orchestrator"
8482
- title: "AI-CoScientist Research Framework"
@@ -283,7 +281,6 @@ nav:
283281
- SelfMoASeq: "swarms/structs/self_moa_seq.md"
284282
- SpreadSheetSwarm: "swarms/structs/spreadsheet_swarm.md"
285283
- ForestSwarm: "swarms/structs/forest_swarm.md"
286-
- MALT: "swarms/structs/malt.md"
287284
- Multi-Agent Execution Utilities: "swarms/structs/various_execution_methods.md"
288285
- Council of Judges: "swarms/structs/council_of_judges.md"
289286
- LLM Council: "swarms/structs/llm_council.md"
@@ -429,7 +426,6 @@ nav:
429426
- DebateWithJudge Quickstart: "examples/debate_quickstart.md"
430427
- Mixture of Agents: "swarms/examples/moa_example.md"
431428
- SelfMoASeq: "swarms/examples/self_moa_seq_example.md"
432-
- MALT: "swarms/examples/malt_example.md"
433429

434430
- Workflow Patterns:
435431
- Sequential Workflow: "swarms/examples/sequential_example.md"

docs/swarms/concept/swarm_architectures.md

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ Multi-agent architectures leverage these communication patterns to ensure that a
3636
| 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 |
3737
| 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 |
3838
| 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 |
4039
| 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 |
4140
| 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 |
4241
| 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
730729

731730
---
732731

733-
### MALT Architecture
734-
735-
**Overview:**
736-
Specialized architecture for complex language processing tasks that require coordination between multiple language-focused agents.
737-
738-
**Use Cases:**
739-
740-
- Natural language processing pipelines
741-
742-
- Translation and localization
743-
744-
- Content generation and editing
745-
746-
747-
**[Learn More](https://docs.swarms.world/en/latest/swarms/structs/malt/)**
748-
749-
```mermaid
750-
graph TD
751-
A[Language Task] --> B[Task Analyzer]
752-
B --> C[Language Router]
753-
754-
C --> D[Grammar Agent]
755-
C --> E[Semantics Agent]
756-
C --> F[Style Agent]
757-
C --> G[Context Agent]
758-
759-
D --> H[Language Processor]
760-
E --> H
761-
F --> H
762-
G --> H
763-
764-
H --> I[Quality Controller]
765-
I --> J[Output Formatter]
766-
J --> K[Final Language Output]
767-
```
768-
769-
---
770-
771732
### Majority Voting
772733

773734
**Overview:**

docs/swarms/examples/malt_example.md

Lines changed: 0 additions & 244 deletions
This file was deleted.

docs/swarms/examples/swarm_router.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ result = router.run("Analyze the investment opportunity")
165165
| `"AutoSwarmBuilder"` | Automatically build swarm configuration |
166166
| `"HiearchicalSwarm"` | Hierarchical agent organization |
167167
| `"MajorityVoting"` | Use majority voting for decisions |
168-
| `"MALT"` | Multi-Agent Learning and Training |
169168
| `"CouncilAsAJudge"` | Council-based evaluation system |
170169
| `"HeavySwarm"` | Heavy swarm for complex tasks |
171170
| `"BatchedGridWorkflow"` | Batched grid workflow for parallel task processing |

docs/swarms/structs/auto_swarm_builder.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,7 @@ The AutoSwarmBuilder supports various multi-agent architecture patterns:
278278
| **AutoSwarmBuilder** | Self-organizing and self-optimizing teams |
279279
| **HiearchicalSwarm** | Layered decision-making with management tiers |
280280
| **MajorityVoting** | Democratic decision-making with voting |
281-
| **MALT** | Multi-agent learning and training |
282281
| **CouncilAsAJudge** | Deliberative decision-making with expert panels |
283-
| **InteractiveGroupChat** | Dynamic group interactions |
284282
| **HeavySwarm** | High-capacity processing with multiple agents |
285283

286284
## Boss System Prompt

0 commit comments

Comments
 (0)