An open API service indexing awesome lists of open source software.

https://github.com/umairazmat/gcuf-se-chatbot

Explore my GitHub repository 🚀🤖 "Chatbot Deployment with Flask and JavaScript" for a comprehensive guide on deploying interactive chatbots using Flask and JavaScript. This repository offers starter files, training scripts, and GUI enhancements, providing an optimal foundation to craft your personalized chatbot and learn about deployment technique
https://github.com/umairazmat/gcuf-se-chatbot

chatbot

Last synced: 7 months ago
JSON representation

Explore my GitHub repository 🚀🤖 "Chatbot Deployment with Flask and JavaScript" for a comprehensive guide on deploying interactive chatbots using Flask and JavaScript. This repository offers starter files, training scripts, and GUI enhancements, providing an optimal foundation to craft your personalized chatbot and learn about deployment technique

Awesome Lists containing this project

README

          

# Chatbot Deployment with Flask and JavaScript

## Initial Setup:
This repo currently contains the starter files.

Clone repo and create a virtual environment
```
$ git clone https://github.com/python-engineer/chatbot-deployment.git
$ cd chatbot-deployment
$ python3 -m venv venv
$ . venv/Scripts/activate
```
Install dependencies
```
$ (venv) pip install Flask torch torchvision nltk
```
Install nltk package
```
$ (venv) python
>>> import nltk
>>> nltk.download('punkt')
```
Modify `intents.json` with different intents and responses for your Chatbot

Run
```
$ (venv) python train.py
```
This will dump data.pth file. And then run
the following command to test it in the console.
```
$ (venv) python chat.py
```

Now for deployment follow my tutorial to implement `app.py` and `app.js`.