AIConverse: Your Intelligent Conversation Companion, seamlessly blending advanced AI to understand and respond to your every query with personalized, insightful answers.
"Revolutionizing communication, AIConverse offers a dynamic, interactive experience, adapting and learning from each interaction to make conversations more engaging and informative."
- Download This Repository.
git clone https://github.com/crazytrain328/AIConverse.git
- Install Virtual Environment for Python
pip install virtualenv
- Create New Virtual Environment.
virtualenv env
- Make sure you have Python and pip installed
To Install Python:To install pip:https://realpython.com/installing-python/
python get-pip.py
- Install Django
pip install django
- Create A New Django Project.
django-admin startproject AIConverse.
- Create a New App chatbot.
django-admin startapp chatbot
- Delete all the created files inside main AIConverse folder and copy and paste the Files in This repository.
- Copy the env folder inside main AIConverse folder.
- Change the working directory to AIConverse
cd AIConverse
- Activate the Virtual Environment.
i) Windowsii) Linuxenv\scripts\activate.ps1
source env\bin\activate.ps1
- Download all the requirements
pip install -r requirements.txt
- Put the OpenAI API key: Go to chatbot/views.py And paste your API key in the openai_api_key variable.
- Start the Server.
python manage.py runserver
- Go to the below URL to run the project.
http://127.0.0.1:8000/