Getting Started: Installation¤
Prerequisites¤
- Python 3.10+
piporpoetry
Installation via pip¤
pip install crewmaster
Installation via poetry¤
poetry add crewmaster
Verifying the Installation¤
To ensure Crewmaster is correctly installed, open a Python interpreter and run a simple import:
import crewmaster
print("Crewmaster is ready!")
If this runs without an error, you're all set to start building your AI crews.
Add Environment variables¤
Create un .env file on the root and add these variables:
LLM_API_KEY_OPEN_AI=<YOUR LLM KEY>
LLM_MODEL_OPEN_AI="gpt-3.5-turbo"
LLM_TEMPERATURE_OPEN_AI=0