Its a simple python program that uses OPENAI API to generate a obsidian compatible notes from any youtube video.
-
clone the repo
git clone https://github.com/CaptainJack2491/thinkvault
-
install requirements
pip install -r requirements.txt
note: if you are on mac or linux, you might need to download the requirements in a virtual environment, for that run the following commands:
python3 -m venv env source env/bin/activate pip install -r requirements.txt -
add the openai api key
- create an api key from (openai)[https://platform.openai.com/api-keys]
- put that api key in the .env file
OPENAI_API_KEY = YOUR_OPENAI_API_KEY
-
run the program
python3 main.py
The summaries along with your thoughts on it will be stored in a summaries folder in the root directory.