GitHub Stars
28
User Rating
Not Rated
Favorites
0
Views
33
Forks
29
Issues
2
Installation
Difficulty
AdvancedEstimated Time
20-45 minutes
Installation
1Set up a Python virtualenv and install dependencies
sh
python -m venv --prompt agent-builder-api venv
source venv/Scripts/activate
# venv/Scripts/activate (Windows PS)
pip install -r requirements.txt
2Set the model name and API key in .env file
env
OPENAI_API_KEY="sk----"
MODEL_NAME="openai"
3Start the server in the new terminal
sh
python -m agentbuilder.main
1Follow the [Offical Instruction Guide](https://python-poetry.org/docs/#installation) to install Poetry.
2Pick and choose dependency packs to install.
```sh