In this repository we have built a multi-agent "crew" (powered by CrewAI) meant to generate AI-powered financial advisement reports.
NOTE: This example does not provide real financial advice, and should not be used to guide investment strategy
We'll explore how to run the crew in detail below!
- We'll want to start by cloning this repository, which can be done as follows:
git clone https://github.com/AI-Maker-Space/AIMS-CrewAI-Demo.git
- Next, we'll
cd
into the newly cloned repository:
cd AIMS-CrewAI-Demo
We'll be using the following APIs to help us today:
Once we've collected all our API keys, we can continue to add them to our .env
file.
- Next we'll create a new empty
.env
file to store our actual environment variables in.
cp .env.sample .env
- We'll add the content and fill in our API keys in the newly created
.env
file.
We can install our dependencies straightforwardly using Poetry!
poetry install --no-root
All that's left to do now is run the crew, which we can do with:
python main.py
After which it will ask for a company and we're off!
This repository is largely based on the example from the CrewAI creator @joaomdmoura and the original can be found here!