The recent popularity of conversational AI has given us an idea of what we can expect from the likes of ChatGPT. What about chatting with your own documents without relying on ChatGPT?. This research assistance is a Python application that allows you to chat with your own PDF.You can ask any question using natural language and the application will respond based ONLY on the context of your PDF.
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 text embeddings to generate vector representations (embeddings) of the text chunks in memory.
-
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 PDF.
To install the MultiPDF Chat App, please follow these steps:
-
Clone the repository to your local machine.
-
Install the required dependencies by running the following command:
pip install -r requirements.txt -
Obtain an API key from OpenAI and add it to the
.envfile in the project directory.
OPENAI_API_KEY=your_secrit_api_key
To use the App, follow these steps:
-
Ensure that you have installed the required dependencies and added the OpenAI API key to the
.envfile. -
Run the
app.pyfile 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 a PDF documents into the app by following the provided instructions.
-
Ask questions in natural language about the loaded PDFs using the chat interface.

