├── .gitignore ├── LICENSE ├── Language_Model └── Instructions.txt ├── NoteBook_Experiments └── Research.ipynb ├── README.md ├── app.py ├── requirements.txt ├── setup.py ├── src ├── __init__.py ├── helper.py └── prompt.py ├── static └── style.css ├── store_index.py ├── template.py └── templates └── chat.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/LICENSE -------------------------------------------------------------------------------- /Language_Model/Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/Language_Model/Instructions.txt -------------------------------------------------------------------------------- /NoteBook_Experiments/Research.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/NoteBook_Experiments/Research.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/src/helper.py -------------------------------------------------------------------------------- /src/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/src/prompt.py -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/static/style.css -------------------------------------------------------------------------------- /store_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/store_index.py -------------------------------------------------------------------------------- /template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/template.py -------------------------------------------------------------------------------- /templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalyanM45/Medical-Chatbot-using-Llama-2/HEAD/templates/chat.html --------------------------------------------------------------------------------