###Django Chatbot with BERT Model!!! This is a Django backend project that implements a chatbot using BERT (Bidirectional Encoder Representations from Transformers), a powerful language model developed by Google. The chatbot is designed to provide responses based on the input from users.
##Prerequisites To run this project, you need to have the following installed:
- Python (version 3.6 or above)
- Django (version 3.0 or above)
- PyTorch (version 1.0 or above)
- Transformers library (version 4.0 or above)
##Installation Clone this repository to your local machine or download and extract the ZIP file.
git clone https://github.com/your-username/django-chatbot-bert.git
Change to the project directory.
Create a virtual environment (optional but recommended).
python3 -m venv env source env/bin/activate
Install the required Python packages.
pip install -r requirements.txt API Endpoints
The following are the available API endpoints:
GET /it_chat: Retrieves answer of chatbot.
POST /it_chat: Creates a new question.