You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
856 B
856 B
Forest Swarm Examples
This directory contains examples demonstrating forest swarm architectures for multi-agent systems.
Examples
- forest_swarm_example.py - Forest-based swarm architecture
- fund_manager_forest.py - Financial fund management forest
- medical_forest_swarm.py - Medical domain forest swarm
- tree_example.py - Basic tree structure example
- tree_swarm_test.py - Tree swarm testing
Overview
Forest swarm patterns organize agents in tree structures, enabling hierarchical processing and decision-making. Each branch can handle different aspects of a problem, with results flowing up the tree for final synthesis. This pattern is useful for complex, multi-faceted problems requiring specialized agent teams.