ghazalnazari1990 commited on
Commit
59cf1a4
1 Parent(s): f992926

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ tags:
4
+ - chatbot
5
+ - conversational-ai
6
+ - pdf
7
+ - document-retrieval
8
+ - openai
9
+ - langchain
10
+ ---
11
+
12
+ # ChatWithYourPDF_Bot
13
+
14
+ **ChatWithYourPDF_Bot** is a conversational AI model designed to interact with users and answer questions based on the content of PDF documents. This model is built using the `langchain` library and OpenAI's GPT-3.5-turbo language model.
15
+
16
+ ## Model Description
17
+
18
+ The ChatWithYourPDF_Bot allows users to upload PDF files and then queries the content of these files to provide relevant answers. The model can handle various questions about the content of the PDF and provides conversational responses.
19
+
20
+ ## Features
21
+
22
+ - **PDF Upload**: Users can upload PDF files to be processed.
23
+ - **Conversational AI**: Provides answers based on the content of the uploaded PDF.
24
+ - **Document Retrieval**: Retrieves relevant sections from the document based on user queries.
25
+
26
+ ## How It Works
27
+
28
+ 1. **PDF Upload**: Users upload a PDF file through the application interface.
29
+ 2. **Document Processing**: The application processes the PDF, splits it into manageable chunks, and creates an embedded vector database.
30
+ 3. **Query Handling**: Users enter questions, which are then processed by the GPT-3.5-turbo model to generate responses based on the document's content.
31
+ 4. **Response Generation**: The model generates and returns relevant answers based on the query and the document's content.
32
+
33
+ ## Usage
34
+
35
+ 1. **Installation**: Ensure you have Python 3.8+ installed and then install the required packages:
36
+ ```bash
37
+ pip install langchain openai pypdf panel
38
+