2024-04-07 23:27:49 +08:00
# AgentCoord Backend
This is the backend for the AgentCoord project. Root project is located [here ](https://github.com/AgentCoord/AgentCoord ). See [LLM configuration ](README.md#llm-configuration ) for LLM configuration before you launch the backend server.
## Launch
2024-04-07 15:04:00 +08:00
2024-04-07 23:27:49 +08:00
You can launch the backend by simply using `docker-compose` in the root directory of the project.
2024-04-07 15:04:00 +08:00
2024-04-07 23:27:49 +08:00
Or, you can launch the backend manually by following the steps below.
2024-04-07 15:04:00 +08:00
2024-04-07 23:27:49 +08:00
1. Install the dependencies by running `pip install -r requirements.txt` .
2024-04-07 15:04:00 +08:00
```bash
2024-04-07 23:27:49 +08:00
pip install -r ./requirements.txt
2024-04-07 15:04:00 +08:00
```
2024-04-07 23:27:49 +08:00
2. launch the backend server (the default port is 8017)
```bash
python ./server.py --port 8017
```
2024-04-07 15:04:00 +08:00