Setup

Database

brew install postgresql@14  
brew install pgvector
createdb chatbot
psql -d chatbot
CREATE EXTENSION pgvector;

Backend

brew install tesseract

Copy the sample env and set your variables in .env

cp sample.env .env

Run configurations in PyCharm: fast-api-run-config.png

Frontend

Start app:

npm start