/ai-agents

Open Source AI Agents built using CrewAI

Primary LanguagePython

Project Setup

Follow these steps to set up the project environment and install the required dependencies.

Setup Virtual Environment

  1. Create a new virtual environment using Python 3.11:
python3.11 -m venv myenv
  1. Activate the virtual environment:
source myenv/bin/activate

Install Dependencies

  1. Install the main project dependencies:
pip install crewai python-dotenv langchain_openai langchain_community
  1. Install additional tools for crewai:
pip install 'crewai[tools]'

Next Steps

After completing these steps, your environment will be set up and ready for development. Make sure to run all project-related commands within this activated virtual environment.