File size: 8,567 Bytes
9676fe6 219ee62 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 a39edc1 9676fe6 c7f45b3 9676fe6 c7f45b3 9676fe6 95f9b7a |
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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
# Import Dependencies (dependencies.py)
import streamlit as st
from langchain.chains import RetrievalQA
from langchain_community.vectorstores import FAISS
from langchain.embeddings import HuggingFaceEmbeddings
from langchain.document_loaders import PyPDFLoader, OnlinePDFLoader
from transformers import pipeline
import re
import sqlite3
from sqlite3 import Error
from langchain.text_splitter import RecursiveCharacterTextSplitter
import requests
import pandas as pd
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
from io import BytesIO
from googleapiclient.discovery import build
from googleapiclient.http import MediaIoBaseDownload
from google.oauth2 import service_account
import tempfile
import os
from langchain.llms import OpenAI # Import the OpenAI class
from langchain.chat_models import ChatOpenAI # Import ChatOpenAI
from langchain.memory import ConversationBufferMemory
from langchain.agents import create_openai_tools_agent, AgentExecutor, Tool
from langchain.prompts import (
ChatPromptTemplate,
MessagesPlaceholder,
) # Import necessary classes
# SQLite Database Functions (database.py)
def create_connection(db_file):
try:
conn = sqlite3.connect(db_file)
return conn
except Error as e:
st.error(f"Error: {e}")
return None
def create_tables(conn):
try:
sql_create_documents_table = """
CREATE TABLE IF NOT EXISTS documents (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
content TEXT NOT NULL,
upload_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
"""
sql_create_queries_table = """
CREATE TABLE IF NOT EXISTS queries (
id INTEGER PRIMARY KEY AUTOINCREMENT,
query TEXT NOT NULL,
response TEXT NOT NULL,
document_id INTEGER,
query_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (document_id) REFERENCES documents (id)
);
"""
sql_create_annotations_table = """
CREATE TABLE IF NOT EXISTS annotations (
id INTEGER PRIMARY KEY AUTOINCREMENT,
document_id INTEGER NOT NULL,
annotation TEXT NOT NULL,
page_number INTEGER,
annotation_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (document_id) REFERENCES documents (id)
);
"""
c = conn.cursor()
c.execute(sql_create_documents_table)
c.execute(sql_create_queries_table)
c.execute(sql_create_annotations_table)
except Error as e:
st.error(f"Error: {e}")
# FAISS Initialization (faiss_initialization.py)
def initialize_faiss(embeddings, documents, document_names):
try:
vector_store = FAISS.from_texts(
documents,
embeddings,
metadatas=[{"source": name} for name in document_names],
)
return vector_store
except Exception as e:
st.error(f"Error initializing FAISS: {e}")
return None
# Document Upload & Parsing Functions (document_parsing.py)
@st.cache_data
def upload_and_parse_documents(documents):
all_texts = []
document_names = []
document_pages = []
text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=100)
for doc in documents:
try:
if doc.name in document_names:
st.warning(
f"Duplicate file name detected: {doc.name}. This file will be ignored.",
icon="⚠️",
)
continue # Skip to the next file
# Create a temporary file
with tempfile.NamedTemporaryFile(delete=False) as tmp_file:
tmp_file.write(doc.read())
tmp_file_path = tmp_file.name
loader = PyPDFLoader(tmp_file_path)
pages = loader.load()
document_names.append(doc.name)
page_contents = []
for page in pages:
chunks = text_splitter.split_text(page.page_content)
all_texts.extend(chunks)
page_contents.append(page.page_content)
document_pages.append(page_contents)
# Remove the temporary file
os.remove(tmp_file_path)
except Exception as e:
st.error(f"Error parsing document {doc.name}: {e}")
return all_texts, document_names, document_pages
@st.cache_data
def parse_pdf_from_url(url):
try:
response = requests.get(url)
response.raise_for_status()
with open("temp.pdf", "wb") as f:
f.write(response.content)
loader = PyPDFLoader("temp.pdf")
pages = loader.load()
all_texts = []
document_name = url.split("/")[-1]
text_splitter = RecursiveCharacterTextSplitter(
chunk_size=1000, chunk_overlap=100
)
for page in pages:
chunks = text_splitter.split_text(page.page_content)
all_texts.extend(chunks)
return all_texts, document_name
except requests.exceptions.RequestException as e:
st.error(f"Failed to download PDF from URL: {e}")
return None, None
except Exception as e:
st.error(f"Error parsing PDF from URL: {e}")
return None, None
@st.cache_data
def parse_pdf_from_google_drive(file_id):
try:
# Authenticate and create the drive service
credentials = service_account.Credentials.from_service_account_info(
st.secrets["gdrive_service_account"],
scopes=["https://www.googleapis.com/auth/drive"],
)
service = build("drive", "v3", credentials=credentials)
request = service.files().get_media(fileId=file_id)
fh = BytesIO()
downloader = MediaIoBaseDownload(fh, request)
done = False
while not done:
status, done = downloader.next_chunk()
fh.seek(0)
with open("temp_drive.pdf", "wb") as f:
f.write(fh.read())
loader = PyPDFLoader("temp_drive.pdf")
pages = loader.load()
all_texts = []
document_name = f"GoogleDrive_{file_id}.pdf"
text_splitter = RecursiveCharacterTextSplitter(
chunk_size=1000, chunk_overlap=100
)
for page in pages:
chunks = text_splitter.split_text(page.page_content)
all_texts.extend(chunks)
return all_texts, document_name
except Exception as e:
st.error(f"Error downloading PDF from Google Drive: {e}")
return None, None
# Embeddings for Semantic Search (embeddings.py)
@st.cache_resource
def get_embeddings_model():
try:
model_name = "sentence-transformers/all-MiniLM-L6-v2"
embeddings = HuggingFaceEmbeddings(model_name=model_name)
return embeddings
except Exception as e:
st.error(f"Error loading embeddings model: {e}")
return None
# QA System Initialization (qa_system.py)
@st.cache_resource
def initialize_qa_system(_vector_store):
try:
llm = ChatOpenAI(
temperature=0,
model_name="gpt-4", # Or another OpenAI model like "gpt-3.5-turbo"
api_key=os.environ.get("OPENAI_API_KEY"),
)
# Define the prompt template (ADD agent_scratchpad)
prompt = ChatPromptTemplate.from_messages(
[
("system", "You are a helpful assistant"),
MessagesPlaceholder(variable_name="chat_history"),
("human", "{input}"),
MessagesPlaceholder(variable_name="agent_scratchpad"),
]
)
# Define the tools
tools = [
Tool(
name="Search",
func=_vector_store.as_retriever(
search_kwargs={"k": 2}
).get_relevant_documents,
description="useful for when you need to answer questions about the documents you have been uploaded. Input should be a fully formed question.",
)
]
# Create the agent and executor
agent = create_openai_tools_agent(llm=llm, tools=tools, prompt=prompt)
agent_executor = AgentExecutor(
agent=agent,
tools=tools,
verbose=True,
memory=ConversationBufferMemory(memory_key="chat_history"),
)
return agent_executor # Return the agent executor
except Exception as e:
st.error(f"Error initializing QA system: {e}")
return None |