chat-with-multiple-PDFs-LLAMA2
chat-with-multiple-PDFs-LLAMA2 copied to clipboard
This script is a chat application that allows users to ask questions about multiple PDF documents implemented with meta's LLAMA2
MultiPDF Chat App
Introduction
The MultiPDF Chat App is a Python application that allows you to chat with multiple PDF documents. You can ask questions about the PDFs using natural language, and the application will provide relevant responses based on the content of the documents. This app utilizes a language model to generate accurate answers to your queries. Please note that the app will only respond to questions related to the loaded PDFs.
How It Works
The application follows these steps to provide responses to your questions:
-
PDF Loading: The app reads multiple PDF documents and extracts their text content.
-
Text Chunking: The extracted text is divided into smaller chunks that can be processed effectively.
-
Language Model: The application utilizes a language model to generate vector representations (embeddings) of the text chunks.
-
Similarity Matching: When you ask a question, the app compares it with the text chunks and identifies the most semantically similar ones.
-
Response Generation: The selected chunks are passed to the language model, which generates a response based on the relevant content of the PDFs.
Dependencies and Installation
To install the MultiPDF Chat App, please follow these steps:
-
Download Ollama library
curl https://ollama.ai/install.sh | sh
-
pull the chat model we will use LLAMA2
ollama pull llama2:70b-chat
-
Create new enviroment with python 3.9 and activate it, in this case we will use conda
conda create -n chat-with-pdf python=3.9
conda activate chat-with-pdf
-
Clone the repository to your local machine.
git clone https://github.com/jorge-armando-navarro-flores/chat-with-multiple-PDFs-LLAMA2.git
cd chat-with-multiple-PDFs-LLAMA2
-
Install the required dependencies by running the following command:
pip install -r requirements.txt
Usage
To use the MultiPDF Chat App, follow these steps:
-
Run the
main.py
file using the Streamlit CLI. Execute the following command:streamlit run app.py
-
The application will launch in your default web browser, displaying the user interface.
-
Load multiple PDF documents into the app by following the provided instructions.
-
Ask questions in natural language about the loaded PDFs using the chat interface.