Spaces:
Sleeping
Sleeping
Upload 9 files
Browse files- README.md +3 -10
- app.py +51 -0
- doc_preprocessing.py +200 -0
- dockerfile +34 -0
- imb.sh +4 -0
- llm_interaction.py +11 -0
- pyproject.toml +18 -0
- uv.lock +0 -0
- vector_DB.py +217 -0
README.md
CHANGED
|
@@ -1,11 +1,4 @@
|
|
| 1 |
-
|
| 2 |
-
title: Note Retriever
|
| 3 |
-
emoji: 💻
|
| 4 |
-
colorFrom: gray
|
| 5 |
-
colorTo: blue
|
| 6 |
-
sdk: docker
|
| 7 |
-
pinned: false
|
| 8 |
-
short_description: This project aims to help long notes writers to locate previ
|
| 9 |
-
---
|
| 10 |
|
| 11 |
-
|
|
|
|
|
|
| 1 |
+
## This project aims to help long notes writers to locate previous scripts written and drown in massive texts
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
+
docker build --no-cache -t notes_retriever .
|
| 4 |
+
docker run -d -p -it 127.0.0.1:8501:8501 notes_retriever
|
app.py
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import numpy as np
|
| 3 |
+
from doc_preprocessing import process_files, get_embeddings
|
| 4 |
+
from vector_DB import VectorDatabase # Import the class
|
| 5 |
+
from llm_interaction import get_answer
|
| 6 |
+
|
| 7 |
+
# Initialize vector database (FAISS) - corrected instantiation
|
| 8 |
+
vector_database = VectorDatabase() #Instantiate the VectorDatabase Class
|
| 9 |
+
chunks_metadata = []
|
| 10 |
+
|
| 11 |
+
def main():
|
| 12 |
+
st.title("Document Query App")
|
| 13 |
+
|
| 14 |
+
uploaded_files = st.file_uploader(
|
| 15 |
+
"Upload PDF or Word files", accept_multiple_files=True, type=["pdf", "docx"]
|
| 16 |
+
)
|
| 17 |
+
|
| 18 |
+
query = st.text_input("Enter your query:")
|
| 19 |
+
|
| 20 |
+
if uploaded_files:
|
| 21 |
+
global chunks_metadata
|
| 22 |
+
all_chunks, all_embeddings, chunks_metadata = process_files(uploaded_files)
|
| 23 |
+
vector_database.add_data(all_embeddings, all_chunks, chunks_metadata) # use the method
|
| 24 |
+
|
| 25 |
+
st.session_state.files_processed = True
|
| 26 |
+
|
| 27 |
+
if query:
|
| 28 |
+
results = process_query(query)
|
| 29 |
+
display_results(results)
|
| 30 |
+
|
| 31 |
+
def process_query(query):
|
| 32 |
+
if vector_database.is_empty(): #Use the method
|
| 33 |
+
return "Please upload files first."
|
| 34 |
+
|
| 35 |
+
# query_embedding = get_embeddings([query])[0]
|
| 36 |
+
# results = vector_database.query(query_embedding, k=3) # use the method
|
| 37 |
+
query_embedding = get_embeddings([query])[0] # Get the embedding for the query
|
| 38 |
+
results = vector_database.query(query_embedding, k=3) # Get the top 2 results
|
| 39 |
+
|
| 40 |
+
return results
|
| 41 |
+
|
| 42 |
+
def display_results(results):
|
| 43 |
+
for result in results:
|
| 44 |
+
st.subheader("Answer")
|
| 45 |
+
st.subheader("Source")
|
| 46 |
+
st.write(f"File: {result['file_name']}, Chunk: {result['chunk_index']}")
|
| 47 |
+
st.subheader("Citations depuis le document :")
|
| 48 |
+
st.write(result["chunk_text"])
|
| 49 |
+
|
| 50 |
+
if __name__ == "__main__":
|
| 51 |
+
main()
|
doc_preprocessing.py
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# from pypdf import PdfReader
|
| 2 |
+
# import docx
|
| 3 |
+
# from transformers.pipelines import pipeline
|
| 4 |
+
# import streamlit as st
|
| 5 |
+
|
| 6 |
+
# def extract_text(file):
|
| 7 |
+
# text = ""
|
| 8 |
+
# if file.name.endswith(".pdf"):
|
| 9 |
+
# try:
|
| 10 |
+
# reader = PdfReader(file)
|
| 11 |
+
# for page in reader.pages:
|
| 12 |
+
# text += page.extract_text() + "\n"
|
| 13 |
+
# except Exception as e:
|
| 14 |
+
# st.error(f"Error reading PDF {file.name}: {e}")
|
| 15 |
+
# return ""
|
| 16 |
+
# elif file.name.endswith(".docx"):
|
| 17 |
+
# try:
|
| 18 |
+
# document = docx.Document(file)
|
| 19 |
+
# for paragraph in document.paragraphs:
|
| 20 |
+
# text += paragraph.text + "\n"
|
| 21 |
+
# except Exception as e:
|
| 22 |
+
# st.error(f"Error reading DOCX {file.name}: {e}")
|
| 23 |
+
# return ""
|
| 24 |
+
# return text
|
| 25 |
+
|
| 26 |
+
# def chunk_text(text, chunk_size=500, overlap=50):
|
| 27 |
+
# chunks = []
|
| 28 |
+
# start = 0
|
| 29 |
+
# while start < len(text):
|
| 30 |
+
# end = start + chunk_size
|
| 31 |
+
# chunk = text[start:end]
|
| 32 |
+
# chunks.append(chunk)
|
| 33 |
+
# start = end - overlap
|
| 34 |
+
# return chunks
|
| 35 |
+
|
| 36 |
+
# def get_embeddings(texts):
|
| 37 |
+
# try:
|
| 38 |
+
# embedding_model = pipeline(
|
| 39 |
+
# 'document-question-answering',
|
| 40 |
+
# "sentence-transformers/all-MiniLM-L6-v2"
|
| 41 |
+
# ) # Example model
|
| 42 |
+
# embeddings = embedding_model(texts)
|
| 43 |
+
# return embeddings
|
| 44 |
+
# except Exception as e:
|
| 45 |
+
# st.error(f"Error generating embeddings: {e}")
|
| 46 |
+
# return []
|
| 47 |
+
|
| 48 |
+
# def process_files(files):
|
| 49 |
+
# all_chunks = []
|
| 50 |
+
# all_embeddings = []
|
| 51 |
+
# chunks_metadata = []
|
| 52 |
+
|
| 53 |
+
# for file in files:
|
| 54 |
+
# text = extract_text(file)
|
| 55 |
+
# if not text: # Skip files that failed to process
|
| 56 |
+
# continue
|
| 57 |
+
# chunks = chunk_text(text)
|
| 58 |
+
# embeddings = get_embeddings(chunks)
|
| 59 |
+
# if not embeddings: # Skip files that failed to embed
|
| 60 |
+
# continue
|
| 61 |
+
|
| 62 |
+
# all_chunks.extend(chunks)
|
| 63 |
+
# all_embeddings.extend(embeddings)
|
| 64 |
+
# for i, chunk in enumerate(chunks):
|
| 65 |
+
# chunks_metadata.append({"file_name": file.name, "chunk_index": i})
|
| 66 |
+
# print(f"Processed {len(files)} files, {len(all_chunks)} chunks generated.")
|
| 67 |
+
# return all_chunks, all_embeddings, chunks_metadata
|
| 68 |
+
import pypdf
|
| 69 |
+
from docx import Document
|
| 70 |
+
from transformers.pipelines import pipeline
|
| 71 |
+
from sentence_transformers import SentenceTransformer
|
| 72 |
+
import streamlit as st
|
| 73 |
+
import numpy as np
|
| 74 |
+
import os
|
| 75 |
+
|
| 76 |
+
def extract_text(file):
|
| 77 |
+
text = ""
|
| 78 |
+
# Check if the input is a file path (string) or a file-like object
|
| 79 |
+
if isinstance(file, str):
|
| 80 |
+
file_name = os.path.basename(file)
|
| 81 |
+
try:
|
| 82 |
+
with open(file, 'rb') as f: # Open in binary mode
|
| 83 |
+
if file_name.endswith(".pdf"):
|
| 84 |
+
print('Processing pdf file.................\n')
|
| 85 |
+
reader = pypdf.PdfReader(f)
|
| 86 |
+
for page in reader.pages:
|
| 87 |
+
text += page.extract_text() + "\\n"
|
| 88 |
+
elif file_name.endswith(".docx"):
|
| 89 |
+
document = Document(f)
|
| 90 |
+
print('Processing DOCX file.................\n')
|
| 91 |
+
for paragraph in document.paragraphs:
|
| 92 |
+
if paragraph.text.strip(): # Check if the paragraph is not empty
|
| 93 |
+
text += paragraph.text + "\\n"
|
| 94 |
+
except FileNotFoundError:
|
| 95 |
+
st.error(f"Error: File not found at {file}")
|
| 96 |
+
return ""
|
| 97 |
+
except Exception as e:
|
| 98 |
+
st.error(f"Error reading {file_name}: {e}")
|
| 99 |
+
return ""
|
| 100 |
+
else: # Assume it's a file-like object (e.g., from Streamlit file_uploader)
|
| 101 |
+
file_name = file.name
|
| 102 |
+
try:
|
| 103 |
+
if file_name.endswith(".pdf"):
|
| 104 |
+
reader = pypdf.PdfReader(file)
|
| 105 |
+
for page in reader.pages:
|
| 106 |
+
text += page.extract_text() + "\\n"
|
| 107 |
+
elif file_name.endswith(".docx"):
|
| 108 |
+
document = Document(file)
|
| 109 |
+
for paragraph in document.paragraphs:
|
| 110 |
+
text += paragraph.text + "\\n"
|
| 111 |
+
except Exception as e:
|
| 112 |
+
st.error(f"Error reading {file_name}: {e}")
|
| 113 |
+
return ""
|
| 114 |
+
return text
|
| 115 |
+
|
| 116 |
+
def chunk_text(text, chunk_size=1500, overlap=150):
|
| 117 |
+
chunks = []
|
| 118 |
+
start = 0
|
| 119 |
+
while start < len(text):
|
| 120 |
+
end = start + chunk_size
|
| 121 |
+
chunk = text[start:end]
|
| 122 |
+
chunks.append(chunk)
|
| 123 |
+
start = end - overlap
|
| 124 |
+
return chunks
|
| 125 |
+
|
| 126 |
+
def get_embeddings(texts)-> np.ndarray:
|
| 127 |
+
try:
|
| 128 |
+
# embedding_model = pipeline(
|
| 129 |
+
# "sentence-transformers/all-MiniLM-L6-v2"
|
| 130 |
+
# ) # Example model
|
| 131 |
+
# embeddings = embedding_model(texts)
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
model = SentenceTransformer('dangvantuan/sentence-camembert-large')
|
| 135 |
+
embeddings = model.encode(texts)
|
| 136 |
+
|
| 137 |
+
print(f"Generated {len(embeddings)} embeddings.")
|
| 138 |
+
return embeddings
|
| 139 |
+
except Exception as e:
|
| 140 |
+
st.error(f"Error generating embeddings: {e}")
|
| 141 |
+
return []
|
| 142 |
+
|
| 143 |
+
def process_files(files):
|
| 144 |
+
all_chunks = []
|
| 145 |
+
all_embeddings = []
|
| 146 |
+
chunks_metadata = []
|
| 147 |
+
|
| 148 |
+
for file in files:
|
| 149 |
+
print(f"Processing file: {file.name if hasattr(file, 'name') else os.path.basename(file)}")
|
| 150 |
+
text = extract_text(file)
|
| 151 |
+
if not text: # Skip files that failed to process
|
| 152 |
+
print(f"Skipping file {file.name if hasattr(file, 'name') else os.path.basename(file)} due to extraction error.")
|
| 153 |
+
continue
|
| 154 |
+
print(f"Chunking text...{file.name if hasattr(file, 'name') else os.path.basename(file)}\n")
|
| 155 |
+
chunks = chunk_text(text)
|
| 156 |
+
embeddings = get_embeddings(chunks)
|
| 157 |
+
if not embeddings.any(): # Skip files that failed to embed
|
| 158 |
+
continue
|
| 159 |
+
|
| 160 |
+
all_chunks.extend(chunks)
|
| 161 |
+
all_embeddings.extend(embeddings)
|
| 162 |
+
for i, chunk in enumerate(chunks):
|
| 163 |
+
chunks_metadata.append({"file_name": file.name if hasattr(file, 'name') else os.path.basename(file), "chunk_index": i})
|
| 164 |
+
return all_chunks, all_embeddings, chunks_metadata
|
| 165 |
+
|
| 166 |
+
|
| 167 |
+
if __name__ == "__main__":
|
| 168 |
+
# Example usage
|
| 169 |
+
dummy_files = ['/Users/zac/Downloads/Janna/verbatimprocs/FZ- revenante - sept24.docx']
|
| 170 |
+
|
| 171 |
+
all_chunks, all_embeddings, chunks_metadata = process_files(dummy_files)
|
| 172 |
+
|
| 173 |
+
print("Chunks ex:")
|
| 174 |
+
print(f"Chunk 0: {all_chunks[0]}")
|
| 175 |
+
|
| 176 |
+
print("\nEmbeddings:")
|
| 177 |
+
print(f"Embedding 0: {all_embeddings[0][:10]}... (shape: {all_embeddings[0].shape})") # Print only the first 5 elements for brevity
|
| 178 |
+
|
| 179 |
+
print("\nMetadata:")
|
| 180 |
+
for i, metadata in enumerate(chunks_metadata[0:5]):
|
| 181 |
+
print(f"Metadata {i}: {metadata}")
|
| 182 |
+
|
| 183 |
+
|
| 184 |
+
|
| 185 |
+
|
| 186 |
+
"""
|
| 187 |
+
|
| 188 |
+
Key improvements and explanations:
|
| 189 |
+
|
| 190 |
+
Clear Function Definitions: Each function has a specific purpose with comprehensive docstrings.
|
| 191 |
+
Error Handling: The extract_text and get_embeddings functions include try...except blocks to handle potential errors during file processing and embedding generation. Errors are displayed using st.error.
|
| 192 |
+
File Type Handling: The extract_text function correctly handles both .pdf and .docx files.
|
| 193 |
+
Chunking Strategy: The chunk_text function splits the text into smaller, overlapping chunks, which is a common strategy for RAG.
|
| 194 |
+
Embedding Generation: The get_embeddings function uses the Hugging Face pipeline to generate embeddings. You can easily swap out the model if needed.
|
| 195 |
+
Metadata: The process_files function now generates a list of metadata dictionaries, containing the file name and chunk index for each chunk. This is crucial for providing source attribution when answering queries.
|
| 196 |
+
Testing: The if __name__ == "__main__": block provides example usage and testing of the functions. This is good practice for ensuring your code works as expected. I've added dummy file creation for testing.
|
| 197 |
+
Efficiency: The code avoids unnecessary computations and handles files and text efficiently.
|
| 198 |
+
|
| 199 |
+
"""
|
| 200 |
+
|
dockerfile
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use an official Python runtime as a parent image
|
| 2 |
+
FROM python:3.11-slim-buster
|
| 3 |
+
|
| 4 |
+
# Set the working directory to /app
|
| 5 |
+
WORKDIR /app
|
| 6 |
+
|
| 7 |
+
# Copy the current directory contents into the container at /app
|
| 8 |
+
COPY . /app/
|
| 9 |
+
COPY app.py /app
|
| 10 |
+
COPY vector_DB.py /app
|
| 11 |
+
COPY llm_interaction.py /app
|
| 12 |
+
COPY doc_preprocessing.py /app
|
| 13 |
+
COPY pyproject.toml /app
|
| 14 |
+
COPY uv.lock /app
|
| 15 |
+
|
| 16 |
+
# Install uv
|
| 17 |
+
RUN pip install uv
|
| 18 |
+
|
| 19 |
+
# Create a virtual environment with uv
|
| 20 |
+
RUN uv venv .venv
|
| 21 |
+
|
| 22 |
+
# Activate the virtual environment. This is important for subsequent commands.
|
| 23 |
+
ENV PATH="/app/.venv/bin:$PATH"
|
| 24 |
+
|
| 25 |
+
# Install project dependencies from pyproject.toml and uv.lock
|
| 26 |
+
#RUN uv pip install --no-cache-dir -r /app/uv.lock
|
| 27 |
+
RUN uv sync --locked
|
| 28 |
+
# Make port 8501 available to the world outside this container
|
| 29 |
+
EXPOSE 8501
|
| 30 |
+
|
| 31 |
+
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 32 |
+
|
| 33 |
+
# Run app.py when the container launches
|
| 34 |
+
CMD ["streamlit", "run", "app.py","--server.port=8501", "--server.address=0.0.0.0"]
|
imb.sh
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
docker stop $(docker ps -q --filter ancestor=notes_retriever)
|
| 3 |
+
docker build --no-cache -t notes_retriever .
|
| 4 |
+
docker run -d -p 127.0.0.1:8501:8501 notes_retriever
|
llm_interaction.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers.pipelines import pipeline
|
| 2 |
+
import streamlit as st
|
| 3 |
+
|
| 4 |
+
def get_answer(query, context):
|
| 5 |
+
try:
|
| 6 |
+
qa_model = pipeline("document-question-answering", model="distilbert-base-cased-distilled-squad")
|
| 7 |
+
result = qa_model(question=query, context=context)
|
| 8 |
+
return result["answer"]
|
| 9 |
+
except Exception as e:
|
| 10 |
+
st.error(f"Error generating answer: {e}")
|
| 11 |
+
return "Sorry, I could not process your query."
|
pyproject.toml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "notes-retriever"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "This project aims to help long notes writers to locate previous scripts written and drown in massive texts"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.11"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"docx>=0.2.4",
|
| 9 |
+
"faiss-cpu>=1.11.0",
|
| 10 |
+
"pdfreader>=0.1.15",
|
| 11 |
+
"processfiles>=0.1.4",
|
| 12 |
+
"pypdf>=5.5.0",
|
| 13 |
+
"python-docx>=1.1.2",
|
| 14 |
+
"sentence-transformers>=4.1.0",
|
| 15 |
+
"streamlit>=1.45.1",
|
| 16 |
+
"torch==2.2.0",
|
| 17 |
+
"transformers>=4.51.3",
|
| 18 |
+
]
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
vector_DB.py
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# import faiss
|
| 2 |
+
# import numpy as np
|
| 3 |
+
# import streamlit as st
|
| 4 |
+
|
| 5 |
+
# class VectorDatabase:
|
| 6 |
+
# def __init__(self):
|
| 7 |
+
# self.index = None
|
| 8 |
+
# self.chunks = []
|
| 9 |
+
# self.chunks_metadata = []
|
| 10 |
+
|
| 11 |
+
# def add_data(self, embeddings, chunks, chunks_metadata):
|
| 12 |
+
# if not embeddings:
|
| 13 |
+
# st.error("No embeddings to add to the database.")
|
| 14 |
+
# return
|
| 15 |
+
# dimension = len(embeddings[0])
|
| 16 |
+
# self.index = faiss.IndexFlatL2(dimension)
|
| 17 |
+
# self.index.add(np.array(embeddings), x=np.float32)
|
| 18 |
+
# self.chunks = chunks
|
| 19 |
+
# self.chunks_metadata = chunks_metadata
|
| 20 |
+
|
| 21 |
+
# def query(self, query_embedding, k=3):
|
| 22 |
+
# if self.index is None:
|
| 23 |
+
# st.error("Vector database is empty. Please upload files and process them first.")
|
| 24 |
+
# return []
|
| 25 |
+
# _, indices = self.index.search(np.array([query_embedding]), k=k)
|
| 26 |
+
# results = []
|
| 27 |
+
# for i in indices[0]:
|
| 28 |
+
# chunk_text = self.chunks[i]
|
| 29 |
+
# metadata = self.chunks_metadata[i]
|
| 30 |
+
# answer = get_answer(query, chunk_text) # Corrected call
|
| 31 |
+
# results.append({
|
| 32 |
+
# "answer": answer,
|
| 33 |
+
# "chunk_text": chunk_text,
|
| 34 |
+
# "file_name": metadata["file_name"],
|
| 35 |
+
# "chunk_index": metadata["chunk_index"],
|
| 36 |
+
# })
|
| 37 |
+
# return results
|
| 38 |
+
|
| 39 |
+
# def is_empty(self):
|
| 40 |
+
# return self.index is None
|
| 41 |
+
# from llm_interaction import get_answer
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
import faiss
|
| 45 |
+
import numpy as np
|
| 46 |
+
import streamlit as st
|
| 47 |
+
from typing import List, Dict, Optional
|
| 48 |
+
|
| 49 |
+
from doc_preprocessing import process_files
|
| 50 |
+
|
| 51 |
+
class VectorDatabase:
|
| 52 |
+
"""
|
| 53 |
+
A class to manage a vector database using FAISS for efficient similarity search.
|
| 54 |
+
"""
|
| 55 |
+
def __init__(self, dimension: int = 0):
|
| 56 |
+
"""
|
| 57 |
+
Initializes the VectorDatabase.
|
| 58 |
+
|
| 59 |
+
Args:
|
| 60 |
+
dimension (int, optional): The dimension of the embeddings. If None, the
|
| 61 |
+
index is not initialized until data is added. Defaults to None.
|
| 62 |
+
"""
|
| 63 |
+
self.dimension = dimension
|
| 64 |
+
self.index: Optional[faiss.Index] = None
|
| 65 |
+
self.chunks: List[str] = []
|
| 66 |
+
self.chunks_metadata: List[Dict] = []
|
| 67 |
+
|
| 68 |
+
def add_data(self, embeddings: List[np.ndarray], chunks: List[str], chunks_metadata: List[Dict]):
|
| 69 |
+
"""
|
| 70 |
+
Adds embeddings, text chunks, and metadata to the vector database.
|
| 71 |
+
|
| 72 |
+
Args:
|
| 73 |
+
embeddings (List[List[float]]): A list of embeddings (each a list or numpy array).
|
| 74 |
+
chunks (List[str]): A list of corresponding text chunks.
|
| 75 |
+
chunks_metadata (List[Dict]): A list of metadata dictionaries, one for each chunk.
|
| 76 |
+
"""
|
| 77 |
+
if not embeddings:
|
| 78 |
+
st.error("No embeddings to add to the database.")
|
| 79 |
+
return
|
| 80 |
+
|
| 81 |
+
# Ensure embeddings are numpy arrays
|
| 82 |
+
embeddings = [np.array(emb) for emb in embeddings]
|
| 83 |
+
|
| 84 |
+
if self.dimension == 0:
|
| 85 |
+
self.dimension = embeddings[0].shape[0]
|
| 86 |
+
self.index = faiss.IndexFlatL2(self.dimension) # Use L2 distance
|
| 87 |
+
elif self.dimension != embeddings[0].shape[0]:
|
| 88 |
+
st.error(f"Embedding dimension ({embeddings[0].shape[0]}) does not match database dimension ({self.dimension}).")
|
| 89 |
+
return
|
| 90 |
+
|
| 91 |
+
# Convert embeddings to a float32 numpy array for FAISS
|
| 92 |
+
embeddings_np = np.array(embeddings, dtype=np.float32)
|
| 93 |
+
if self.index is None:
|
| 94 |
+
self.index = faiss.IndexFlatL2(self.dimension)
|
| 95 |
+
self.index.add(embeddings_np)
|
| 96 |
+
self.chunks = chunks
|
| 97 |
+
self.chunks_metadata = chunks_metadata
|
| 98 |
+
|
| 99 |
+
def query(self, query_embedding: List[float], k: int = 3) -> List[Dict]:
|
| 100 |
+
"""
|
| 101 |
+
Queries the vector database for the most similar chunks to a query embedding.
|
| 102 |
+
|
| 103 |
+
Args:
|
| 104 |
+
query_embedding (List[float]): The embedding of the query.
|
| 105 |
+
k (int, optional): The number of nearest neighbors to retrieve. Defaults to 3.
|
| 106 |
+
|
| 107 |
+
Returns:
|
| 108 |
+
List[Dict]: A list of dictionaries, where each dictionary contains:
|
| 109 |
+
- "chunk_text" (str): The text of the retrieved chunk.
|
| 110 |
+
- "file_name" (str): The name of the file the chunk came from.
|
| 111 |
+
- "chunk_index" (int): The index of the chunk in the file.
|
| 112 |
+
"""
|
| 113 |
+
if self.index is None:
|
| 114 |
+
st.error("Vector database is empty. Please upload files and process them first.")
|
| 115 |
+
return []
|
| 116 |
+
|
| 117 |
+
# Ensure query_embedding is a numpy array
|
| 118 |
+
query_embedding = np.array(query_embedding, dtype=np.float32).reshape(1, -1) # Reshape for FAISS
|
| 119 |
+
|
| 120 |
+
_, indices = self.index.search(query_embedding, k=k)
|
| 121 |
+
results = []
|
| 122 |
+
for i in indices[0]:
|
| 123 |
+
chunk_text = self.chunks[i]
|
| 124 |
+
metadata = self.chunks_metadata[i]
|
| 125 |
+
results.append({
|
| 126 |
+
"chunk_text": chunk_text,
|
| 127 |
+
"file_name": metadata["file_name"],
|
| 128 |
+
"chunk_index": metadata["chunk_index"],
|
| 129 |
+
})
|
| 130 |
+
return results
|
| 131 |
+
|
| 132 |
+
def is_empty(self) -> bool:
|
| 133 |
+
"""
|
| 134 |
+
Checks if the vector database is empty.
|
| 135 |
+
|
| 136 |
+
Returns:
|
| 137 |
+
bool: True if the database is empty, False otherwise.
|
| 138 |
+
"""
|
| 139 |
+
return self.index is None
|
| 140 |
+
|
| 141 |
+
if __name__ == "__main__":
|
| 142 |
+
# This part is for testing the VectorDatabase class.
|
| 143 |
+
# It will only run if you execute this file directly: python vector_database.py
|
| 144 |
+
|
| 145 |
+
# # Create some dummy data
|
| 146 |
+
# embeddings = [
|
| 147 |
+
# np.array([1.0, 2.0, 3.0]),
|
| 148 |
+
# np.array([4.0, 5.0, 6.0]),
|
| 149 |
+
# np.array([7.0, 8.0, 9.0]),
|
| 150 |
+
# np.array([10.0, 11.0, 12.0]),
|
| 151 |
+
# ]
|
| 152 |
+
# chunks = [
|
| 153 |
+
# "This is chunk 1 from file A.",
|
| 154 |
+
# "This is chunk 2 from file A.",
|
| 155 |
+
# "This is chunk 1 from file B.",
|
| 156 |
+
# "This is chunk 2 from file B.",
|
| 157 |
+
# ]
|
| 158 |
+
# chunks_metadata = [
|
| 159 |
+
# {"file_name": "file_a.pdf", "chunk_index": 0},
|
| 160 |
+
# {"file_name": "file_a.pdf", "chunk_index": 1},
|
| 161 |
+
# {"file_name": "file_b.docx", "chunk_index": 0},
|
| 162 |
+
# {"file_name": "file_b.docx", "chunk_index": 1},
|
| 163 |
+
# ]
|
| 164 |
+
dummy_files = ['/Users/zac/Downloads/Janna/verbatimprocs/FZ- revenante - sept24.docx']
|
| 165 |
+
chunks, embeddings, chunks_metadata = process_files(dummy_files)
|
| 166 |
+
|
| 167 |
+
# 1. Initialize the VectorDatabase
|
| 168 |
+
vector_db = VectorDatabase(dimension=embeddings[0].shape[0]) # Initialize with dimension
|
| 169 |
+
|
| 170 |
+
# 2. Add data to the VectorDatabase
|
| 171 |
+
vector_db.add_data(embeddings, chunks, chunks_metadata)
|
| 172 |
+
print("Data added to VectorDatabase.")
|
| 173 |
+
|
| 174 |
+
# 3. Perform a query
|
| 175 |
+
query_embedding = np.random.rand(embeddings[0].shape[0]).astype(np.float32) # Random query embedding
|
| 176 |
+
results = vector_db.query(query_embedding, k=2) # Get the top 2 results
|
| 177 |
+
|
| 178 |
+
print("\nQuery results:")
|
| 179 |
+
for result in results:
|
| 180 |
+
print(f"Chunk: {result['chunk_text']}")
|
| 181 |
+
print(f" File: {result['file_name']}")
|
| 182 |
+
print(f" Index: {result['chunk_index']}")
|
| 183 |
+
|
| 184 |
+
# 4. Check if the database is empty
|
| 185 |
+
print(f"\nIs the database empty? {vector_db.is_empty()}") # Check is_empty method
|
| 186 |
+
|
| 187 |
+
# 5. Initialize without dimension and then add data
|
| 188 |
+
vector_db2 = VectorDatabase()
|
| 189 |
+
vector_db2.add_data(embeddings, chunks, chunks_metadata)
|
| 190 |
+
print("\nData added to VectorDatabase2 (without initial dimension).")
|
| 191 |
+
|
| 192 |
+
query_embedding_2 = np.random.rand(embeddings[0].shape[0]).astype(np.float32) # Random query embedding
|
| 193 |
+
results_2 = vector_db2.query(query_embedding_2, k=1)
|
| 194 |
+
print("\nQuery results from VectorDatabase2:")
|
| 195 |
+
for result in results_2:
|
| 196 |
+
print(f"Chunk: {result['chunk_text']}")
|
| 197 |
+
print(f" File: {result['file_name']}")
|
| 198 |
+
print(f" Index: {result['chunk_index']}")
|
| 199 |
+
|
| 200 |
+
|
| 201 |
+
|
| 202 |
+
|
| 203 |
+
"""
|
| 204 |
+
|
| 205 |
+
Key improvements and explanations:
|
| 206 |
+
|
| 207 |
+
Class Structure: The VectorDatabase class encapsulates the FAISS index, chunks, and metadata, providing a clean and organized way to manage the vector database.
|
| 208 |
+
Initialization: The __init__ method now takes an optional dimension argument. If not provided during initialization, the dimension is inferred when the first data is added. This provides more flexibility.
|
| 209 |
+
Data Handling: The add_data method takes lists of embeddings, chunks, and metadata, and stores them in the object. It also converts the embeddings to a float32 numpy array, which is the format FAISS expects, and checks for dimension consistency.
|
| 210 |
+
Querying: The query method performs a similarity search using FAISS and returns a list of dictionaries containing the relevant information. It also handles the case where the database is empty.
|
| 211 |
+
Error Handling: The add_data and query methods include error handling for invalid input or an empty database.
|
| 212 |
+
Clarity: The code is well-commented and easy to understand.
|
| 213 |
+
Testing: The if __name__ == "__main__": block provides a comprehensive test of the VectorDatabase class, demonstrating how to add data, perform queries, and check if the database is empty. I've added a test for initializing the database without a dimension.
|
| 214 |
+
|
| 215 |
+
|
| 216 |
+
|
| 217 |
+
"""
|