Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,66 +1,103 @@
|
|
1 |
import streamlit as st
|
2 |
from dotenv import load_dotenv
|
3 |
-
from
|
4 |
-
from langchain.text_splitter import CharacterTextSplitter
|
5 |
-
from
|
6 |
from langchain.vectorstores import FAISS
|
7 |
-
from langchain.
|
|
|
|
|
|
|
|
|
8 |
|
9 |
-
def get_pdf_text(
|
10 |
text = ""
|
11 |
-
for pdf in
|
12 |
-
|
13 |
-
for page in
|
14 |
text += page.extract_text()
|
|
|
|
|
15 |
|
16 |
def get_text_chunks(text):
|
17 |
-
|
18 |
separator="\n",
|
19 |
chunk_size=1000,
|
20 |
chunk_overlap=200,
|
21 |
length_function=len
|
22 |
)
|
23 |
-
chunks =
|
24 |
return chunks
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
return
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
)
|
|
|
|
|
36 |
|
37 |
-
def
|
38 |
-
|
39 |
-
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
|
43 |
def main():
|
44 |
load_dotenv()
|
45 |
-
st.set_page_config(page_title="
|
46 |
-
|
47 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
with st.sidebar:
|
50 |
-
st.subheader("
|
51 |
-
|
52 |
-
|
53 |
if st.button("Process"):
|
54 |
with st.spinner("Processing"):
|
55 |
-
|
56 |
-
|
57 |
-
chunks = get_text_chunks()
|
58 |
-
st.write(chunks)
|
59 |
-
|
60 |
|
|
|
|
|
61 |
|
|
|
|
|
62 |
|
|
|
|
|
|
|
63 |
|
64 |
|
65 |
if __name__ == '__main__':
|
66 |
-
main()
|
|
|
1 |
import streamlit as st
|
2 |
from dotenv import load_dotenv
|
3 |
+
from PyPDF2 import PdfReader
|
4 |
+
from langchain.text_splitter import CharacterTextSplitter
|
5 |
+
from langchain.embeddings import OpenAIEmbeddings, HuggingFaceInstructEmbeddings
|
6 |
from langchain.vectorstores import FAISS
|
7 |
+
from langchain.chat_models import ChatOpenAI
|
8 |
+
from langchain.memory import ConversationBufferMemory
|
9 |
+
from langchain.chains import ConversationalRetrievalChain
|
10 |
+
from htmlTemplates import css, bot_template, user_template
|
11 |
+
from langchain.llms import HuggingFaceHub
|
12 |
|
13 |
+
def get_pdf_text(pdf_docs):
|
14 |
text = ""
|
15 |
+
for pdf in pdf_docs:
|
16 |
+
pdf_reader = PdfReader(pdf)
|
17 |
+
for page in pdf_reader.pages:
|
18 |
text += page.extract_text()
|
19 |
+
return text
|
20 |
+
|
21 |
|
22 |
def get_text_chunks(text):
|
23 |
+
text_splitter = CharacterTextSplitter(
|
24 |
separator="\n",
|
25 |
chunk_size=1000,
|
26 |
chunk_overlap=200,
|
27 |
length_function=len
|
28 |
)
|
29 |
+
chunks = text_splitter.split_text(text)
|
30 |
return chunks
|
31 |
|
32 |
+
|
33 |
+
def get_vectorstore(text_chunks):
|
34 |
+
# embeddings = OpenAIEmbeddings()
|
35 |
+
embeddings = HuggingFaceInstructEmbeddings(model_name="hkunlp/instructor-xl")
|
36 |
+
vectorstore = FAISS.from_texts(texts=text_chunks, embedding=embeddings)
|
37 |
+
return vectorstore
|
38 |
+
|
39 |
+
|
40 |
+
def get_conversation_chain(vectorstore):
|
41 |
+
llm = HuggingFaceHub(repo_id="google/flan-t5-xxl", model_kwargs={"temperature":0.5, "max_length":512})
|
42 |
+
|
43 |
+
memory = ConversationBufferMemory(
|
44 |
+
memory_key='chat_history', return_messages=True)
|
45 |
+
conversation_chain = ConversationalRetrievalChain.from_llm(
|
46 |
+
llm=llm,
|
47 |
+
retriever=vectorstore.as_retriever(),
|
48 |
+
memory=memory
|
49 |
)
|
50 |
+
return conversation_chain
|
51 |
+
|
52 |
|
53 |
+
def handle_userinput(user_question):
|
54 |
+
response = st.session_state.conversation({'question': user_question})
|
55 |
+
st.session_state.chat_history = response['chat_history']
|
56 |
+
|
57 |
+
for i, message in enumerate(st.session_state.chat_history):
|
58 |
+
if i % 2 == 0:
|
59 |
+
st.write(user_template.replace(
|
60 |
+
"{{MSG}}", message.content), unsafe_allow_html=True)
|
61 |
+
else:
|
62 |
+
st.write(bot_template.replace(
|
63 |
+
"{{MSG}}", message.content), unsafe_allow_html=True)
|
64 |
|
65 |
|
66 |
def main():
|
67 |
load_dotenv()
|
68 |
+
st.set_page_config(page_title="Chat with multiple PDFs",
|
69 |
+
page_icon=":books:")
|
70 |
+
st.write(css, unsafe_allow_html=True)
|
71 |
+
|
72 |
+
if "conversation" not in st.session_state:
|
73 |
+
st.session_state.conversation = None
|
74 |
+
if "chat_history" not in st.session_state:
|
75 |
+
st.session_state.chat_history = None
|
76 |
+
|
77 |
+
st.header("Chat with multiple PDFs :books:")
|
78 |
+
user_question = st.text_input("Ask a question about your documents:")
|
79 |
+
if user_question:
|
80 |
+
handle_userinput(user_question)
|
81 |
|
82 |
with st.sidebar:
|
83 |
+
st.subheader("Your documents")
|
84 |
+
pdf_docs = st.file_uploader(
|
85 |
+
"Upload your PDFs here and click on 'Process'", accept_multiple_files=True)
|
86 |
if st.button("Process"):
|
87 |
with st.spinner("Processing"):
|
88 |
+
# get pdf text
|
89 |
+
raw_text = get_pdf_text(pdf_docs)
|
|
|
|
|
|
|
90 |
|
91 |
+
# get the text chunks
|
92 |
+
text_chunks = get_text_chunks(raw_text)
|
93 |
|
94 |
+
# create vector store
|
95 |
+
vectorstore = get_vectorstore(text_chunks)
|
96 |
|
97 |
+
# create conversation chain
|
98 |
+
st.session_state.conversation = get_conversation_chain(
|
99 |
+
vectorstore)
|
100 |
|
101 |
|
102 |
if __name__ == '__main__':
|
103 |
+
main()
|