├── .gitignore ├── LICENSE ├── README.md ├── data └── example-1 │ ├── Basic-Scientific-Food-Preparation-Lab-Manual.pdf │ └── Basic-Scientific-Food-Preparation-Lab-Manual.txt ├── images ├── overview.webp ├── simple-rag-1-db.webp ├── simple-rag-1-reranker.webp └── simple-rag-1.webp ├── notebooks ├── mistral-llamaindex-hf-offline-with-reranker.ipynb ├── mistral-llamaindex-hf-offline.ipynb └── mistral-llamaindex-hf-weaviate.ipynb └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/README.md -------------------------------------------------------------------------------- /data/example-1/Basic-Scientific-Food-Preparation-Lab-Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/data/example-1/Basic-Scientific-Food-Preparation-Lab-Manual.pdf -------------------------------------------------------------------------------- /data/example-1/Basic-Scientific-Food-Preparation-Lab-Manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/data/example-1/Basic-Scientific-Food-Preparation-Lab-Manual.txt -------------------------------------------------------------------------------- /images/overview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/images/overview.webp -------------------------------------------------------------------------------- /images/simple-rag-1-db.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/images/simple-rag-1-db.webp -------------------------------------------------------------------------------- /images/simple-rag-1-reranker.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/images/simple-rag-1-reranker.webp -------------------------------------------------------------------------------- /images/simple-rag-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/images/simple-rag-1.webp -------------------------------------------------------------------------------- /notebooks/mistral-llamaindex-hf-offline-with-reranker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/notebooks/mistral-llamaindex-hf-offline-with-reranker.ipynb -------------------------------------------------------------------------------- /notebooks/mistral-llamaindex-hf-offline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/notebooks/mistral-llamaindex-hf-offline.ipynb -------------------------------------------------------------------------------- /notebooks/mistral-llamaindex-hf-weaviate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/notebooks/mistral-llamaindex-hf-weaviate.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasbt/RAGs/HEAD/requirements.txt --------------------------------------------------------------------------------