Table of Contents
This repository is a tutorial on how to get started with CrewAI. CrewAI is a framework built for orchestrating role-playing, autonomous AI Agents. CrewAI focuses on empowering agents to work together seamlessly, tackling complex tasks with capabilities ranging from web search, data analysis to collaboration & delegating tasks among coworkers.
To get started, follow these simple steps:
- Python 3.8 or higher
- Basic understanding of Python
- OpenAI API Key (Sign up & obtain here)
Setting up OpenAI's API Key.
- Create a .env file and populate:
OPENAI_API_KEY="sk-xxx"
OR you can also export the API key in your terminal:
export OPENAI_API_Key = "sk-xxx"
- To run the application, you will need to first create a virtual environment and install the dependencies and all required libraries.
MacOS:
pip install virtualenv
python3.11 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Windows:
pip install virtualenv
python3.11 -m venv venv
venv/Scripts/activate.bat
pip install -r requirements.txt
- To start each tutorial application, you can run the following command:
For any enquiry or support, you may drop an email to Keh
Developed using CrewAI