Locally runnable RAG application demo.
Install ollama and run following command:
ollama serve
The application is using /docs
directory as source for document files. You can add some *.pdf
files there that you're interested to use in your RAG application.
Run following commands:
python3 -m venv venv
source /venv/bin/activate
pip install -requirements.txt
streamlit run src/app.py
Run followin commands:
docker build -t local-rag .
docker run -p 8501:8501 local-rag