├── .gitignore ├── Data ├── cancer_and_cure__a_critical_analysis.27.pdf └── medical_oncology_handbook_june_2020_edition.pdf ├── README.md ├── docker.txt ├── ingest.py ├── rag.py ├── requirements.txt ├── retriever.py └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/.gitignore -------------------------------------------------------------------------------- /Data/cancer_and_cure__a_critical_analysis.27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/Data/cancer_and_cure__a_critical_analysis.27.pdf -------------------------------------------------------------------------------- /Data/medical_oncology_handbook_june_2020_edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/Data/medical_oncology_handbook_june_2020_edition.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/README.md -------------------------------------------------------------------------------- /docker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/docker.txt -------------------------------------------------------------------------------- /ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/ingest.py -------------------------------------------------------------------------------- /rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/rag.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/requirements.txt -------------------------------------------------------------------------------- /retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/retriever.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenil210/Medical-RAG/HEAD/templates/index.html --------------------------------------------------------------------------------