https://github.com/kyegomez/dev-swarm
A swarm of LLM agents that will help you test, document, and productionize your code!
https://github.com/kyegomez/dev-swarm
agents ai anthropic claude gpt4 llms ml transformers
Last synced: about 7 hours ago
JSON representation
A swarm of LLM agents that will help you test, document, and productionize your code!
- Host: GitHub
- URL: https://github.com/kyegomez/dev-swarm
- Owner: kyegomez
- License: mit
- Created: 2024-07-10T20:12:30.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-17T16:51:25.000Z (about 1 month ago)
- Last Synced: 2025-03-26T16:40:57.716Z (24 days ago)
- Topics: agents, ai, anthropic, claude, gpt4, llms, ml, transformers
- Language: Python
- Homepage: https://github.com/kyegomez/swarms
- Size: 2.19 MB
- Stars: 14
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome_ai_agents - Dev-Swarm - A swarm of LLM agents that will help you test, document, and productionize your code! (Building / Testing)
README
[](https://discord.gg/qUtxnK2NMf)
# Dev Swarm
## Install
```bash
$ pip install dev-swarm
```## Usage
````python
from dev_swarm import DevSwarm# Example usage
items = []
module = "docs/swarms/structs"
docs_folder_path = "docs/swarms/structs"
tests_folder_path = "tests/memory"
flow = "FunctionGenerator -> DocumentorAgent -> H -> TesterAgent -> H"dev_swarm = DevSwarm(
items=items,
documentor_agent_name="DocumentorAgent",
tester_agent_name="TesterAgent",
function_generator_agent_name="FunctionGenerator",
max_loops=1,
module=module,
docs_folder_path=docs_folder_path,
tests_folder_path=tests_folder_path,
flow=flow,
)output = dev_swarm.run(task="Start your tasks")
print(output)
```