A simple chatbot implementation using python. Model trained with the tenserflow. Flask for backend. React for frontned.
First setup a virtual environment for python in the server folder.
Then run the following command to install the required dependencies
pip install -r requirements.txt Make a .env file in the root of server folder and add the following
MY_SECRET=my-secret
HOST=localhost:5000Run the server with the following command
python src/app.pyGo to client folder and install all dependencies
npm installRun the client with
npm start