Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/john-adeojo/crew_ai_tutorial
A quick Crew AI tutorial
https://github.com/john-adeojo/crew_ai_tutorial
Last synced: 9 days ago
JSON representation
A quick Crew AI tutorial
- Host: GitHub
- URL: https://github.com/john-adeojo/crew_ai_tutorial
- Owner: john-adeojo
- Created: 2024-04-22T13:37:43.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-09T14:47:31.000Z (7 months ago)
- Last Synced: 2024-08-14T07:07:40.267Z (4 months ago)
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 21
- Watchers: 1
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - john-adeojo/crew_ai_tutorial - A quick Crew AI tutorial (Python)
README
# Setting Up and Running Crew AI
### Prerequisites
1. **Install Anaconda:**
Download Anaconda from [https://www.anaconda.com/](https://www.anaconda.com/).2. **Create a Virtual Environment:**
```bash
conda create -n crew_env python=3.10 pip
```
3. **Activate the Virtual Environment:**
```bash
conda activate crew_env
```4. **Install Requirements:**
```bash
pip install -r requirements.txt
```### Clone and Navigate to the Repository
1. **Clone the Repo:**
```bash
git clone https://github.com/your-repo/crew-ai.git
```2. **Navigate to the Repo:**
```bash
cd /path/to/your-repo/crew-ai
```### Configure API Keys
1. **Open the `config.yaml`:**
```bash
nano config.yaml
```2. **Enter API Keys:**
- **Serper API Key:** Get it from [https://serper.dev/](https://serper.dev/)
- **OpenAI API Key:** Get it from [https://openai.com/](https://openai.com/)### Run Your Query
```bash
python app.py "YOUR QUERY"
```