Skip to content

Vaidehi-01/Chatbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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