├── .github ├── config.yml ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── github-actions.yml ├── .python-version ├── LICENSE ├── README.md ├── Streamlit ├── README.md └── model.py ├── __pycache__ └── model.cpython-311.pyc ├── chainlit.md ├── conversession e.g ├── ChatBot Conversession img-1.png ├── ChatBot Conversession img-2.png ├── ChatBot Conversession img-3.pdf ├── ChatBot Conversession img-3.png ├── ChatBot Conversession img-4.png └── ChatBot Conversession vid.mp4 ├── data └── 71763-gale-encyclopedia-of-medicine.-vol.-1.-2nd-ed.pdf ├── ingest.py ├── model.py ├── requirements.txt └── vectorstores └── db_faiss ├── index.faiss └── index.pkl /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/.github/workflows/github-actions.yml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11.5 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/README.md -------------------------------------------------------------------------------- /Streamlit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/Streamlit/README.md -------------------------------------------------------------------------------- /Streamlit/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/Streamlit/model.py -------------------------------------------------------------------------------- /__pycache__/model.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/__pycache__/model.cpython-311.pyc -------------------------------------------------------------------------------- /chainlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/chainlit.md -------------------------------------------------------------------------------- /conversession e.g/ChatBot Conversession img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/conversession e.g/ChatBot Conversession img-1.png -------------------------------------------------------------------------------- /conversession e.g/ChatBot Conversession img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/conversession e.g/ChatBot Conversession img-2.png -------------------------------------------------------------------------------- /conversession e.g/ChatBot Conversession img-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/conversession e.g/ChatBot Conversession img-3.pdf -------------------------------------------------------------------------------- /conversession e.g/ChatBot Conversession img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/conversession e.g/ChatBot Conversession img-3.png -------------------------------------------------------------------------------- /conversession e.g/ChatBot Conversession img-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/conversession e.g/ChatBot Conversession img-4.png -------------------------------------------------------------------------------- /conversession e.g/ChatBot Conversession vid.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/conversession e.g/ChatBot Conversession vid.mp4 -------------------------------------------------------------------------------- /data/71763-gale-encyclopedia-of-medicine.-vol.-1.-2nd-ed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/data/71763-gale-encyclopedia-of-medicine.-vol.-1.-2nd-ed.pdf -------------------------------------------------------------------------------- /ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/ingest.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /vectorstores/db_faiss/index.faiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/vectorstores/db_faiss/index.faiss -------------------------------------------------------------------------------- /vectorstores/db_faiss/index.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThisIs-Developer/Llama-2-GGML-Medical-Chatbot/HEAD/vectorstores/db_faiss/index.pkl --------------------------------------------------------------------------------