├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── docker-compose.yml ├── ingest.py ├── model_add.py ├── requirements.txt ├── static └── ignore.txt.txt └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Haystack-and-Mistral-7B-RAG-Implementation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Haystack-and-Mistral-7B-RAG-Implementation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Haystack-and-Mistral-7B-RAG-Implementation/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Haystack-and-Mistral-7B-RAG-Implementation/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Haystack-and-Mistral-7B-RAG-Implementation/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Haystack-and-Mistral-7B-RAG-Implementation/HEAD/ingest.py -------------------------------------------------------------------------------- /model_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Haystack-and-Mistral-7B-RAG-Implementation/HEAD/model_add.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Haystack-and-Mistral-7B-RAG-Implementation/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/ignore.txt.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/Haystack-and-Mistral-7B-RAG-Implementation/HEAD/templates/index.html --------------------------------------------------------------------------------