12 lines
426 B
Bash
12 lines
426 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Example: use the swarm to decide between two approaches.
|
||
|
|
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
|
||
|
|
python3 scripts/swarm_chat.py \
|
||
|
|
--topic "Should we use SQLAlchemy 2.0 style or 1.x style in our FastAPI project? Compare maintainability, async support, and migration cost." \
|
||
|
|
--agents swarm-architect swarm-critic swarm-coder \
|
||
|
|
--roles architect critic coder \
|
||
|
|
--rounds 3 \
|
||
|
|
--room project:swarm:design_decision
|