├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── data ├── Oncology.pdf └── jc306-un-staff-rev1_en.pdf ├── ingest.py ├── requirements.txt └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Medical-RAG-using-Bio-Mistral-7B/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Medical-RAG-using-Bio-Mistral-7B/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Medical-RAG-using-Bio-Mistral-7B/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Medical-RAG-using-Bio-Mistral-7B/HEAD/app.py -------------------------------------------------------------------------------- /data/Oncology.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Medical-RAG-using-Bio-Mistral-7B/HEAD/data/Oncology.pdf -------------------------------------------------------------------------------- /data/jc306-un-staff-rev1_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Medical-RAG-using-Bio-Mistral-7B/HEAD/data/jc306-un-staff-rev1_en.pdf -------------------------------------------------------------------------------- /ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Medical-RAG-using-Bio-Mistral-7B/HEAD/ingest.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Medical-RAG-using-Bio-Mistral-7B/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Medical-RAG-using-Bio-Mistral-7B/HEAD/templates/index.html --------------------------------------------------------------------------------