The FinanceGPT is a chatbot application for financial analysis using real time data and OpenAI fuctions.
- Create a python virtual environment.
python -m venv venv
- Activate the virtual environment.
# Linux
source venv/bin/activate
# Windows
venv\Scripts\activate
- Install the dependencies
pip install -r requirements.txt
- Add a .env file and add your OpenAI api key and your alpha vantage api key
# .env
OPENAI_API_KEY=
ALPHA_VANTAGE_API_KEY=
ALPHA_VANTAGE_BASE_URL=https://www.alphavantage.co
- Run the chatbot
chainlit run app.py