Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 11 days 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 (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-07T14:20:58.000Z (about 1 month ago)
- Last Synced: 2024-10-14T07:58:06.623Z (about 1 month ago)
- Topics: agents, ai, anthropic, claude, gpt4, llms, ml, transformers
- Language: Python
- Homepage: https://github.com/kyegomez/swarms
- Size: 2.19 MB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[![Multi-Modality](agorabanner.png)](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)
```