alanwnl commited on
Commit
2c9afc6
·
1 Parent(s): a1dba57

Add application file

Browse files
Files changed (1) hide show
  1. app.py +206 -0
app.py ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import urllib.request
2
+ import fitz
3
+ import re
4
+ import numpy as np
5
+ import tensorflow_hub as hub
6
+ import openai
7
+ import gradio as gr
8
+ import os
9
+ from sklearn.neighbors import NearestNeighbors
10
+
11
+ def download_pdf(url, output_path):
12
+ urllib.request.urlretrieve(url, output_path)
13
+
14
+
15
+ def preprocess(text):
16
+ text = text.replace('\n', ' ')
17
+ text = re.sub('\s+', ' ', text)
18
+ return text
19
+
20
+
21
+ def pdf_to_text(path, start_page=1, end_page=None):
22
+ doc = fitz.open(path)
23
+ total_pages = doc.page_count
24
+
25
+ if end_page is None:
26
+ end_page = total_pages
27
+
28
+ text_list = []
29
+
30
+ for i in range(start_page-1, end_page):
31
+ text = doc.load_page(i).get_text("text")
32
+ text = preprocess(text)
33
+ text_list.append(text)
34
+
35
+ doc.close()
36
+ return text_list
37
+
38
+
39
+ def text_to_chunks(texts, word_length=150, start_page=1):
40
+ text_toks = [t.split(' ') for t in texts]
41
+ page_nums = []
42
+ chunks = []
43
+
44
+ for idx, words in enumerate(text_toks):
45
+ for i in range(0, len(words), word_length):
46
+ chunk = words[i:i+word_length]
47
+ if (i+word_length) > len(words) and (len(chunk) < word_length) and (
48
+ len(text_toks) != (idx+1)):
49
+ text_toks[idx+1] = chunk + text_toks[idx+1]
50
+ continue
51
+ chunk = ' '.join(chunk).strip()
52
+ chunk = f'[Page no. {idx+start_page}]' + ' ' + '"' + chunk + '"'
53
+ chunks.append(chunk)
54
+ return chunks
55
+
56
+
57
+ class SemanticSearch:
58
+
59
+ def __init__(self):
60
+ self.use = hub.load("https://tfhub.dev/google/universal-sentence-encoder/4")
61
+ self.fitted = False
62
+
63
+
64
+ def fit(self, data, batch=1000, n_neighbors=5):
65
+ self.data = data
66
+ self.embeddings = self.get_text_embedding(data, batch=batch)
67
+ n_neighbors = min(n_neighbors, len(self.embeddings))
68
+ self.nn = NearestNeighbors(n_neighbors=n_neighbors)
69
+ self.nn.fit(self.embeddings)
70
+ self.fitted = True
71
+
72
+
73
+ def __call__(self, text, return_data=True):
74
+ inp_emb = self.use([text])
75
+ neighbors = self.nn.kneighbors(inp_emb, return_distance=False)[0]
76
+
77
+ if return_data:
78
+ return [self.data[i] for i in neighbors]
79
+ else:
80
+ return neighbors
81
+
82
+
83
+ def get_text_embedding(self, texts, batch=1000):
84
+ embeddings = []
85
+ for i in range(0, len(texts), batch):
86
+ text_batch = texts[i:(i+batch)]
87
+ emb_batch = self.use(text_batch)
88
+ embeddings.append(emb_batch)
89
+ embeddings = np.vstack(embeddings)
90
+ return embeddings
91
+
92
+
93
+
94
+ def load_recommender(path, start_page=1):
95
+ global recommender
96
+ texts = pdf_to_text(path, start_page=start_page)
97
+ chunks = text_to_chunks(texts, start_page=start_page)
98
+ recommender.fit(chunks)
99
+ return 'Corpus Loaded.'
100
+
101
+
102
+ ####################
103
+ def generate_text(openAI_key,prompt,engine="chatgpt"):
104
+ openai.api_type = "azure"
105
+ openai.api_base = "https://api.hku.hk"
106
+ openai.api_version = "2023-03-15-preview"
107
+ openai.api_key = openAI_key
108
+ completions = openai.ChatCompletion.create(
109
+ engine="chatgpt",
110
+ max_tokens=1024,
111
+ n=1,
112
+ stop=None,
113
+ temperature=0.7,
114
+ messages=[
115
+ {"role": "user", "content": prompt}
116
+ ]
117
+ )
118
+ print(completions)
119
+ message = completions['choices'][0]['message']['content']
120
+ return message
121
+
122
+
123
+
124
+
125
+ #####################
126
+
127
+ def generate_answer(question,openAI_key):
128
+ topn_chunks = recommender(question)
129
+ prompt = ""
130
+ prompt += 'search results:\n\n'
131
+ for c in topn_chunks:
132
+ prompt += c + '\n\n'
133
+
134
+ prompt += "Instructions: Compose a comprehensive reply to the query using the search results given. "\
135
+ "Cite each reference using [ Page Number] notation (every result has this number at the beginning). "\
136
+ "Citation should be done at the end of each sentence. If the search results mention multiple subjects "\
137
+ "with the same name, create separate answers for each. Only include information found in the results and "\
138
+ "don't add any additional information. Make sure the answer is correct and don't output false content. "\
139
+ "If the text does not relate to the query, simply state 'Found Nothing'. Ignore outlier "\
140
+ "search results which has nothing to do with the question. Only answer what is asked. The "\
141
+ "answer should be short and concise. \n\nQuery: {question}\nAnswer: "
142
+
143
+ prompt += f"Query: {question}\nAnswer:"
144
+ answer = generate_text(openAI_key, prompt,"chatgpt")
145
+ return answer
146
+
147
+
148
+
149
+
150
+
151
+ def question_answer(url, file, question,openAI_key):
152
+ if openAI_key.strip()=='':
153
+ return '[ERROR]: Please enter you Open AI Key. Get your key here : https://platform.openai.com/account/api-keys'
154
+ if url.strip() == '' and file == None:
155
+ return '[ERROR]: Both URL and PDF is empty. Provide atleast one.'
156
+
157
+ if url.strip() != '' and file != None:
158
+ return '[ERROR]: Both URL and PDF is provided. Please provide only one (eiter URL or PDF).'
159
+
160
+ if url.strip() != '':
161
+ glob_url = url
162
+ download_pdf(glob_url, 'corpus.pdf')
163
+ load_recommender('corpus.pdf')
164
+
165
+ else:
166
+ old_file_name = file.name
167
+ file_name = file.name
168
+ file_name = file_name[:-12] + file_name[-4:]
169
+ os.rename(old_file_name, file_name)
170
+ load_recommender(file_name)
171
+
172
+ if question.strip() == '':
173
+ return '[ERROR]: Question field is empty'
174
+
175
+ return generate_answer(question,openAI_key)
176
+
177
+ recommender = SemanticSearch()
178
+
179
+ title = 'PDF GPT'
180
+ description = """ PDF GPT allows you to chat with your PDF file using Universal Sentence Encoder and Open AI. It gives hallucination free response than other tools as the embeddings are better than OpenAI. The returned response can even cite the page number in square brackets([]) where the information is located, adding credibility to the responses and helping to locate pertinent information quickly."""
181
+
182
+
183
+ with gr.Blocks() as demo:
184
+
185
+ gr.Markdown(f'<center><h1>{title}</h1></center>')
186
+ gr.Markdown(description)
187
+
188
+ with gr.Row():
189
+
190
+ with gr.Group():
191
+ gr.Markdown(f'<p style="text-align:center">Get your Open AI API key <a href="https://platform.openai.com/account/api-keys">here</a></p>')
192
+ openAI_key=gr.Textbox(label='Enter your OpenAI API key here')
193
+ url = gr.Textbox(label='Enter PDF URL here')
194
+ gr.Markdown("<center><h4>OR<h4></center>")
195
+ file = gr.File(label='Upload your PDF/ Research Paper / Book here', file_types=['.pdf'])
196
+ question = gr.Textbox(label='Enter your question here')
197
+ btn = gr.Button(value='Submit')
198
+ btn.style(full_width=True)
199
+
200
+ with gr.Group():
201
+ answer = gr.Textbox(label='The answer to your question is :')
202
+
203
+ btn.click(question_answer, inputs=[url, file, question,openAI_key], outputs=[answer])
204
+ #openai.api_key = os.getenv('Your_Key_Here')
205
+ demo.launch()
206
+