This is a PDF chatbot that use RAG approach
To run the application you would need to install poetry
Refer to official website to download poetry
After installing run the code below to start
poetry install
poetry run streamlit run app.py
Note: Remove the poerty run
if you are inside poetry's venv
If you don't want to download poetry, you can also use docker container to run this application. follow the step below:
- Make sure you install docker desktop & login
- Create a docker image first:
docker build -t <your_username>/<image_name>:<tag> .
- Build the container:
docker run -p 8501:8501 <your_username>/<image_name>:<tag>