├── .DS_Store ├── .env ├── Dockerfile ├── README.md ├── backend ├── __init__.py ├── app.py ├── generator.py ├── ingest.py ├── requirements.txt └── retriever.py ├── docker-compose.yml └── frontend ├── Dockerfile ├── app.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | OLLAMA_MODEL=llama3 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/backend/generator.py -------------------------------------------------------------------------------- /backend/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/backend/ingest.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/backend/retriever.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h9-tect/RAG-app/HEAD/frontend/app.py -------------------------------------------------------------------------------- /frontend/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | requests 3 | --------------------------------------------------------------------------------