Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 525 Bytes

Readme.md

File metadata and controls

31 lines (23 loc) · 525 Bytes

BOOK RECOMMENDATION CHATBOT

A chatbot designed to assist book enthusiasts in discovering book recommendations based on author, publisher, or title preferences. Utilizes KNN algorithm for recommendation.

create a virtual env

python3 -m venv .venv

or

python -m venv .venv

start the virtual environment by

# in windows

.\.venv\Scripts\activate

# in linux

./venv/bin/activate

install the requirements

pip install -r requirements.txt

run the application

flask run