A specialized medical chatbot built with Llama 2, Pinecone vector database, and LangChain, designed to provide medical information and answers based on uploaded medical documents.
medical-chatbot/ ├── app.py ├── requirements.txt ├── model/ │ └── llama-2-7b-chat.ggmlv3.q4_1.bin ├── src/ │ ├── __init__.py │ ├── helper.py │ └── prompt.py ├── Data/ │ └── [your PDF files] └── templates/ └── chat.html
git clone https://github.com/PrathamAhuja1/Medical-Chatbot-Llama2.git cd Medical-Chatbot-Llama2 pip install -r requirements.txt python app.py