Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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!

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)
```