worker and boss folders

main
Kye 2 years ago
parent 59ddee3bd2
commit 76e2c1077f

@ -16,13 +16,13 @@ Just as a swarm of bees works together, communicating and coordinating their act
## Installation ## Installation
```bash ```bash
git clone https://github.com/kyegomez/swarms.git git clone https://github.com/kyegomez/swarms.git
pip install -r requirements.txt
cd swarms cd swarms
pip install -r requirements.txt
``` ```
## Usage ## Usage
The primary agent in this repository is the `AutoAgent` from `./swarms/agents/auto_agent.py`. The primary agent in this repository is the `AutoAgent` from `./swarms/agents/workers/auto_agent.py`.
This `AutoAgent` is used to create the `MultiModalVisualAgent`, an autonomous agent that can process tasks in a multi-modal environment, like dealing with both text and visual data. This `AutoAgent` is used to create the `MultiModalVisualAgent`, an autonomous agent that can process tasks in a multi-modal environment, like dealing with both text and visual data.

@ -37,7 +37,7 @@ from langchain.tools.human.tool import HumanInputRun
from swarms.agents.auto_agent import MultiModalVisualAgent from swarms.agents.workers.auto_agent import MultiModalVisualAgent
class MultiModalVisualAgentTool(BaseTool): class MultiModalVisualAgentTool(BaseTool):
name = "multi_visual_agent" name = "multi_visual_agent"
Loading…
Cancel
Save