Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/swarms/structs/auto_swarm_builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ The `execution_type` parameter controls how the AutoSwarmBuilder operates:
| Execution Type | Description |
|----------------------------------|-----------------------------------------------------------|
| **"return-agents"** | Creates and returns agent specifications as a dictionary (default) |
| **"execute-swarm-router"** | Executes the swarm router with the created agents |
| **"return-swarm-router-config"** | Returns the swarm router configuration as a dictionary |
| **"return-agents-objects"** | Returns agent objects created from specifications |

Expand Down Expand Up @@ -602,7 +601,6 @@ for agent in agents:
- Use `verbose=True` during development for debugging
- Choose the right `execution_type` for your use case:
- Use `"return-agents"` for getting agent specifications as dictionary (default)
- Use `"execute-swarm-router"` for executing the swarm router with created agents
- Use `"return-swarm-router-config"` for analyzing swarm architecture
- Use `"return-agents-objects"` for getting agent objects created from specifications
- Set `max_tokens` appropriately based on expected response length
Expand Down
1 change: 0 additions & 1 deletion swarms/structs/auto_swarm_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

execution_types = [
"return-agents",
"execute-swarm-router",
"return-swarm-router-config",
"return-agents-objects",
]
Expand Down
Loading