Spaces:
Sleeping
Sleeping
File size: 13,077 Bytes
20eba2e | 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | # -*- coding: utf-8 -*-# ============ IMPORTS ============
# edit 21.05.2025 by tet.sydorenko - creating csv-files for analysis
import os
import re
import pickle
import logging
import warnings
import pandas as pd
import numpy as np
import pdfplumber
import torch
from tqdm import tqdm
from dotenv import load_dotenv
from sentence_transformers import SentenceTransformer
from langchain_core.documents import Document
from langchain_community.embeddings import SentenceTransformerEmbeddings
from langchain_chroma import Chroma
from langchain_huggingface import HuggingFaceEmbeddings
import chromadb # for creating chromadb
from chromadb.config import Settings
# ============ CONFIGURATION ============
warnings.filterwarnings("ignore", message="CropBox missing")
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(message)s')
logger = logging.getLogger(__name__)
# ============ MODEL INITIALIZATION ============
model = SentenceTransformer("sentence-transformers/all-mpnet-base-v2")
logger.info("β‘ GPU active: %s", torch.cuda.is_available())
logger.info("π₯οΈ Model device: %s", model.device)
# ============ ENVIRONMENT VARIABLES ============
load_dotenv()
os.environ["LANGSMITH_TRACING"] = "true"
import os
os.environ["LANGCHAIN_TRACING_V2"] = "true"
os.environ["LANGCHAIN_PROJECT"] = "Multi_Agenten"
os.environ["LANGCHAIN_ENDPOINT"] = "https://api.smith.langchain.com"
os.environ["LANGSMITH_API_KEY"] = os.getenv("LANGSMITH_API_KEY")
os.environ["GOOGLE_API_KEY"] = os.getenv("GOOGLE_API_KEY")
# ============ HELPER FUNCTIONS ============
def normalize_text(text):
"""Normalize text by removing special characters"""
return re.sub(r'[^a-z0-9]', '', text.lower())
def is_pdf_file(filename):
"""Check if file is PDF"""
return filename.lower().endswith('.pdf')
def extract_metadata(filename):
"""
Extract company name, year, report type and quarter from filename
Examples:
"Apple_Q1_2023_Report.pdf" β ('apple', '2023', 'quarterly', 'Q1')
"""
normalized = normalize_text(filename)
return (
next((c for c in ['apple','google','meta','microsoft','nvidia'] if c in normalized), None),
next((y for y in map(str, range(2019,2025)) if y in filename), None),
'quarterly' if any(q in normalized for q in ['q1','q2','q3','q4','10q']) else 'annual',
next((f'Q{i}' for i in range(1,5) if f'q{i}' in normalized), None)
)
# ============ LOAD FROM PICKLE ============
def load_from_pickle(file_path):
if os.path.exists(file_path):
logger.info(f"π¦ Loading data from {file_path}")
with open(file_path, 'rb') as f:
return pickle.load(f)
return None
# ============ PROCESS PDFs ============ edit by tet.sydorenko: tables were extracted incorrectly
def create_data_from_pdfs(data_dir="./data", file_path="extracted_documents.pkl"):
logger.info("β³ Creating new data from PDFs...")
extracted_data = []
for root, _, files in os.walk(data_dir):
for filename in tqdm(files, desc="Processing files"):
if is_pdf_file(filename):
meta = extract_metadata(filename)
if meta and meta[0]: # Ensure company name exists
try:
with pdfplumber.open(os.path.join(root, filename)) as pdf:
tables = []
for page in pdf.pages:
raw_tables = page.extract_tables()
for table in raw_tables:
if len(table) > 1 and all(len(row) == len(table[0]) for row in table): # tet.syd: Checking Column Equality
try:
df = pd.DataFrame(table[1:], columns=table[0])
df.dropna(how="all", inplace=True)
df = df.loc[:, ~df.columns.duplicated()] # tet.syd: Remove duplicate titles
if df.shape[1] >= 2: # tet.syd: Let's make sure there are at least 2 columns
tables.append(df)
except Exception as e:
logger.warning(f"β οΈ Error converting table: {e}")
if tables:
extracted_data.append({
'company': meta[0],
'file': filename,
'year': meta[1],
'report_type': meta[2],
'quarter': meta[3],
'tables': tables
})
except Exception as e:
logger.error(f"β Error processing {filename}: {e}")
# Save data to pickle file
with open(file_path, 'wb') as f:
pickle.dump(extracted_data, f)
logger.info(f"β
Saved {len(extracted_data)} documents to {file_path}")
return extracted_data
# ============ MAIN FUNCTION ============
def load_data(file_path="extracted_documents.pkl", data_dir="./data"):
"""
Load data from pickle file if available, otherwise process PDFs and create the file
"""
extracted_data = load_from_pickle(file_path)
if extracted_data is None:
extracted_data = create_data_from_pdfs(data_dir, file_path)
return extracted_data
# ============ TABLE FILTERING ============
def is_relevant_table(dataframe):
"""
Check if table contains relevant financial data
"""
if dataframe is None or dataframe.empty:
return False
keywords = ["cash", "assets", "liabilities", "revenue", "income", "total", "net", "equity"]
banlist = ["item", "management", "controls", "procedures", "legal", "discussion", "risk"]
try:
flat_text = " ".join(str(value).lower() for value in dataframe.values.flatten() if pd.notnull(value))
if any(banned in flat_text for banned in banlist):
return False
keyword_matches = sum(1 for keyword in keywords if keyword in flat_text)
return keyword_matches >= 2 or any(currency in flat_text for currency in ["$", "β¬", "%"])
except Exception:
return False
# ============ DOCUMENT CREATION ============
def create_documents(extracted_data, overwrite_csv: bool = False): # edit by tetsydorenko: export to csv
"""
Create LangChain documents from relevant financial tables and export them to CSV files.
Args:
extracted_data (list): List of dictionaries containing company metadata and raw tables
overwrite_csv (bool): If True, existing CSV files will be overwritten
"""
documents = []
os.makedirs("processed_tables", exist_ok=True) # Ensure target directory exists
for entry in extracted_data:
# Build document-level metadata text
content = f"π {entry['company']} {entry['year']} {entry['report_type']}"
content += f" {entry['quarter']}" if entry['quarter'] else ""
content += f" from {entry['file']}:\n"
tables_content = []
kept_tables = 0
for i, df in enumerate(entry['tables']):
# Remove empty rows and columns
df = df.dropna(how='all').dropna(axis=1, how='all')
if df.empty or df.shape[1] < 2:
continue
try:
# Attempt to convert potential financial strings to numeric values
numeric_candidate = df.apply(lambda col: col.map(
lambda x: float(str(x).replace(",", "").replace("$", "").replace("β¬", "").strip())
if isinstance(x, str) and re.search(r"\d", x)
else np.nan
))
numeric_cols = numeric_candidate.dropna(axis=1, thresh=3)
valid_rows = numeric_candidate.dropna(how='all')
# Keep only tables with at least 2 numeric columns and 3 valid rows
if numeric_cols.shape[1] < 2 or valid_rows.shape[0] < 3:
logger.info(f"βΉοΈ Table {i} from {entry['file']} skipped: not enough numeric content.")
continue
# === Save CSV ===
filename_parts = [
entry['company'],
entry['year'] or "unknown",
entry['quarter'] or "annual",
f"table{i}"
]
csv_filename = f"./processed_tables/{'_'.join(filename_parts)}.csv"
if overwrite_csv or not os.path.exists(csv_filename):
df.to_csv(csv_filename, index=False)
logger.info(f"πΎ Saved: {csv_filename}")
else:
logger.info(f"π Skipped existing file: {csv_filename}")
# Add to document content
tables_content.append(f"\n--- Table {i} ---\n{df.to_markdown(index=False)}")
kept_tables += 1
except ValueError as e:
if "could not convert string to float" in str(e):
logger.info(f"βΉοΈ Table {i} from {entry['file']} skipped: non-numeric or malformed content.")
else:
logger.warning(f"β οΈ Unexpected error in table {i} from {entry['file']}: {e}")
except Exception as e:
logger.warning(f"β οΈ General error in table {i} from {entry['file']}: {e}")
# Finalize and save the LangChain document if valid tables were found
if kept_tables > 0:
content += "\n".join(tables_content)
documents.append(Document(
page_content=content,
metadata={
"company": entry['company'],
"file": entry['file'],
"year": entry['year'],
"report_type": entry['report_type'],
"quarter": entry['quarter']
}
))
logger.info("β
Created %d relevant documents", len(documents))
return documents
# ============ VECTOR STORE ============
def initialize_vector_store():
"""
Initialize Chroma vector database using PersistentClient
"""
embeddings = HuggingFaceEmbeddings(model_name="sentence-transformers/all-mpnet-base-v2")
persist_directory = "./chroma_db" # pass for saving chromadb
print('\nPERSISTANT DIRECTORY: ',persist_directory)
chroma_client = chromadb.PersistentClient(path=persist_directory) # create PersistentClient!
return Chroma(
client=chroma_client,
collection_name="financial_reports",
embedding_function=embeddings,
persist_directory=persist_directory
)
# ============ MAIN PROCESS ============
def main():
try:
# 1. Load data
data = load_data()
# 2. Create documents
documents = create_documents(data,overwrite_csv=False) # REMOVE overwrite_csv=True (should be False!)
# 3. Initialize vector store
vector_store = initialize_vector_store()
# 4. Store documents in batches (edit by tet.sydorenko: Store documents only if collection is empty)
collection_size = vector_store._collection.count()
logger.info("π¦ Existing documents in vector DB: %d", collection_size)
if collection_size == 0:
batch_size = 5000
total_docs = len(documents)
logger.info("β³ Storing %d documents in batches of %d", total_docs, batch_size)
for batch_start in range(0, total_docs, batch_size):
batch = documents[batch_start:batch_start + batch_size]
vector_store.add_documents(batch)
batch_num = (batch_start // batch_size) + 1
logger.info("β
Batch %d with %d documents added", batch_num, len(batch))
else:
logger.info("β
Vector store already contains documents. Skipping insertion.")
# 5. Example search
query = "What was Meta's net income in 2023?"
logger.info("π Searching for: %s", query)
results = vector_store.similarity_search(query, k=3)
for i, doc in enumerate(results, 1):
logger.info("\nπ Result %d:\n%.300s...\nπ Metadata: %s",
i, doc.page_content, doc.metadata)
# Save ChromaDB
logger.info("πΎ ChromaDB persisted at ./chroma_db")
except Exception as e:
logger.error(f"An error occurred: {e}")
raise
if __name__ == "__main__":
main() |