File size: 7,978 Bytes
8f3f965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
from dotenv import load_dotenv
load_dotenv() 

import streamlit as st
import json
import os
from datetime import datetime, timedelta

import google.generativeai as genai
from langchain_community.vectorstores import Chroma
from langchain.chains.question_answering import load_qa_chain
from langchain import PromptTemplate
from langchain_community.embeddings import SentenceTransformerEmbeddings
from langchain_community.vectorstores import FAISS
from langchain_google_genai import ChatGoogleGenerativeAI
from langchain.prompts import ChatPromptTemplate
from langchain_community.document_loaders import PyPDFDirectoryLoader
from langchain.text_splitter import RecursiveCharacterTextSplitter
from langchain_google_genai import GoogleGenerativeAIEmbeddings
from transformers import pipeline
from PyPDF2 import PdfReader
import docx2txt

print(genai.configure(api_key=os.getenv("GOOGLE_API_KEY")))

model = genai.GenerativeModel("gemini-pro")
chat = model.start_chat(history=[])

if 'chat_history' not in st.session_state:
    st.session_state['chat_history'] = []

if "messages" not in st.session_state:
    st.session_state["messages"] = []

if 'level' not in st.session_state:
    st.session_state['level'] = 'Beginner'

# Add initial assistant message if chat history is empty
if not st.session_state["messages"]:
    st.session_state["messages"].append({"role": "assistant", "content": "Ask Me Anything About The Uploaded Pdfs"})










prompt_template = """

    Answer the question as detailed as possible from the provided context, make sure to provide all the details, if the answer is not in

    provided context just say, "answer is not available in the context", don't provide the wrong answer\n\n

    Context:\n {context}?\n

    Question: \n{question}\n



    Answer:

    """

model = ChatGoogleGenerativeAI(model="gemini-pro",
                            temperature=0.3)

prompt = PromptTemplate(template = prompt_template, input_variables = ["context", "question"])
chain = load_qa_chain(model, chain_type="stuff", prompt=prompt)





def get_file_text(files):
    text = []
    for file in files:
        if file.type == "application/pdf":  # Handle PDF files
            pdf_reader = PdfReader(file)
            for page in pdf_reader.pages:
                text.append(page.extract_text())
        elif file.type == "application/vnd.openxmlformats-officedocument.wordprocessingml.document":  # Handle DOCX files
            text.append(docx2txt.process(file))
        elif file.type == "text/plain":  # Handle text files
            with file.open(encoding="utf-8") as f:  # Adjust encoding if needed
                text.append(f.read())
        else:  # Handle unsupported file types
            st.error(f"Unsupported file type: {file.type}")
    return text


def format_timestamp(timestamp):
    now = datetime.now()
    if timestamp.date() == now.date():
        return "today"
    elif timestamp.date() == (now - timedelta(days=1)).date():
        return "yesterday"
    else:
        return timestamp.strftime('%Y-%m-%d %H:%M:%S')


# document1=st.sidebar.file_uploader("Document 1 (question)",accept_multiple_files=True,key="document1")
# document=get_file_text(document1)


# text_splitter = RecursiveCharacterTextSplitter(chunk_size=100000, chunk_overlap=200)
# context= ", ".join(map(str,document))



# text_chunks= text_splitter.split_text(context)


 


def main():
    c1, c2, c3 = st.columns([1, 2, 1])
    pth = "Logo.jpg"
    c1.image(pth, width=130)
    c2.title("Chat Your Pdfs")



    chat_container = st.container()
    input_container = st.container()

    with chat_container:
        # for msg in st.session_state.messages:
        for i, msg in enumerate(st.session_state.messages):

            if msg["role"] == "user":
                # st.markdown(f"<div style='text-align: left; color: black; bac kground-color: #90EE90; padding: 10px; border-radius: 10px; margin: 10px 0;'>{msg['content']}</div>", unsafe_allow_html=True)
                # st.markdown(f"<div style='text-align: right; color: black; background-color: #d3d3d3; padding: 10px; border-radius: 10px; margin: 10px 0;'>{msg['content']}</div>", unsafe_allow_html=True)
                st.markdown(f"<div id='{i}' style='text-align: left; color: black; background-color: #dae1e0; padding: 10px; border-radius: 10px; margin: 10px 0;'>{msg['content']}</div>", unsafe_allow_html=True)

            else:
                # st.markdown(f"<div style='text-align: left; color: black; background-color: #90EE90; padding: 10px; border-radius: 10px; margin: 10px 0;'>{msg['content']}</div>", unsafe_allow_html=True)
                # st.markdown(f"<div style='text-align: left; color: white; background-color: #1a73e8; padding: 10px; border-radius: 10px; margin: 10px 0;'>{msg['content']}</div>", unsafe_allow_html=True)
                st.markdown(f"<div id='{i}' style='text-align: left; color: black; background-color: #f4f4f4; padding: 10px; border-radius: 10px; margin: 10px 0;'>{msg['content']}</div>", unsafe_allow_html=True)

    document1=st.sidebar.file_uploader("Document 1 (question)",accept_multiple_files=True,key="document1")
    document=get_file_text(document1)


    text_splitter = RecursiveCharacterTextSplitter(chunk_size=100000, chunk_overlap=200)
    context= ", ".join(map(str,document))

    embeddings =SentenceTransformerEmbeddings(model_name='all-MiniLM-L6-v2')


    text_chunks= text_splitter.split_text(context)

  

    for chuck in text_chunks:
        if embeddings:

            vector_store = FAISS.from_texts(text_chunks, embedding=embeddings)
            vector_store.save_local("faiss_index")


            # embeddings =SentenceTransformerEmbeddings(model_name='all-MiniLM-L6-v2')
            c2.markdown('##')

            if prompt := st.chat_input():

                with input_container:
                    if prompt:
                        with chat_container:
                            for i, msg in enumerate(st.session_state.messages):
                                if msg["role"] == "user":
                                        st.markdown(f"<div id='{i}' style='text-align: left; color: black; background-color: #dae1e0; padding: 10px; border-radius: 10px; margin: 10px 0;'>{msg['content']}</div>", unsafe_allow_html=True)




                        new_db = FAISS.load_local("faiss_index", embeddings)
                        docs = new_db.similarity_search(prompt)
                            
                        response_text = chain(
                            {"input_documents":docs, "question": prompt}
                            , return_only_outputs=False)
                        
                        timestamp = datetime.now()
                        st.session_state['chat_history'].append(("You", prompt, timestamp))
                        st.session_state['chat_history'].append(("Bot", response_text['output_text'], timestamp))

                        st.session_state["messages"].append({"role": "user", "content": prompt})
                        st.session_state["messages"].append({"role": "assistant", "content": response_text["output_text"]})

                        st.experimental_rerun()
    st.sidebar.title("Chat History")
    for entry in st.session_state['chat_history']:
        role, content, timestamp = entry
        if role == "You":
            st.sidebar.write(f"{content} ({format_timestamp(timestamp)})")

    st.sidebar.button('Clear Chat History', on_click=clear_chat_history)               
                
           
        
def clear_chat_history():
    st.session_state.messages = [{"role": "assistant", "content": "Ask Me Anything About The Uploaded Pdfs"}]
    st.session_state['chat_history'] = []
    st.experimental_rerun()