Spaces:
Sleeping
Sleeping
File size: 13,299 Bytes
ecab17a a6680e7 f482e1d ecab17a f482e1d ecab17a a6680e7 5039972 f482e1d 5039972 ecab17a a6680e7 5039972 f482e1d 5039972 ecab17a 5039972 ecab17a 5039972 f482e1d 5039972 54040b2 5039972 f482e1d 5039972 a6680e7 5039972 a6680e7 ecab17a a6680e7 ecab17a 5039972 a6680e7 5039972 ecab17a 5039972 f482e1d 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 ecab17a 5039972 ecab17a a6680e7 5039972 a6680e7 3340ad6 a6680e7 5039972 a6680e7 5039972 a6680e7 ecab17a a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 ecab17a 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 f482e1d a6680e7 5039972 a6680e7 5039972 a6680e7 f482e1d a6680e7 34bfedc f482e1d 5039972 a6680e7 5039972 a6680e7 ecab17a 5039972 f482e1d a6680e7 5039972 a6680e7 5039972 f482e1d 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 f482e1d a6680e7 f482e1d a6680e7 f482e1d a6680e7 f482e1d 5039972 f482e1d a6680e7 5039972 a6680e7 5039972 a6680e7 54040b2 a6680e7 54040b2 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 a6680e7 5039972 54040b2 5039972 a6680e7 54040b2 a6680e7 54040b2 a6680e7 54040b2 3340ad6 54040b2 3340ad6 a6680e7 3340ad6 54040b2 16d4eab a6680e7 5039972 a6680e7 3340ad6 |
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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
import streamlit as st
import os
from pathlib import Path
from pdf_parser import PDFParser
from vector_store import VectorStore
from rag_system import VisualMultimodalRAG
from config import UPLOAD_FOLDER, MAX_PDF_SIZE_MB
st.set_page_config(
page_title="π Multimodal RAG LLM System (PDF Parsing)",
layout="wide",
initial_sidebar_state="expanded"
)
if 'api_key_set' not in st.session_state:
st.session_state.api_key_set = False
if 'api_key' not in st.session_state:
st.session_state.api_key = None
if 'visual_rag_system' not in st.session_state:
st.session_state.visual_rag_system = None
if 'vector_store' not in st.session_state:
st.session_state.vector_store = None
if 'parser' not in st.session_state:
st.session_state.parser = None
if 'current_document' not in st.session_state:
st.session_state.current_document = None
if 'current_text' not in st.session_state:
st.session_state.current_text = None
if 'current_images' not in st.session_state:
st.session_state.current_images = None
if 'current_tables' not in st.session_state:
st.session_state.current_tables = None
if 'processing_results' not in st.session_state:
st.session_state.processing_results = None
if 'answering_rag' not in st.session_state:
st.session_state.answering_rag = None
st.title("π Multimodal RAG LLM System (PDF Parsing)")
with st.sidebar:
st.header("βοΈ Configuration")
st.subheader("π OpenAI API Key")
api_key = st.text_input(
"Enter your OpenAI API key:",
type="password",
key="api_key_input"
)
if api_key:
st.session_state.api_key = api_key
st.session_state.api_key_set = True
if st.session_state.visual_rag_system is None:
try:
st.session_state.visual_rag_system = VisualMultimodalRAG(api_key=api_key, debug=True)
st.session_state.vector_store = VectorStore()
st.session_state.parser = PDFParser(debug=True)
st.success("β
API Key set & systems initialized")
except Exception as e:
st.error(f"Error initializing systems: {e}")
else:
st.session_state.api_key_set = False
st.warning("β οΈ Please enter your API key to continue")
st.divider()
st.subheader("π Vector Store Status")
if st.session_state.vector_store:
try:
info = st.session_state.vector_store.get_collection_info()
st.metric("Items in Store", info['count'])
st.metric("Status", info['status'])
st.caption(f"Path: {info['persist_path']}")
except Exception as e:
st.error(f"Error getting store info: {e}")
else:
st.info("Set API key to initialize vector store")
st.divider()
st.subheader("π Document Management")
if st.button("π Clear Vector Store"):
if st.session_state.vector_store:
try:
st.session_state.vector_store.clear_all()
st.success("β
Vector store cleared")
except Exception as e:
st.error(f"Error clearing store: {e}")
st.header("π€ Upload PDF Document")
uploaded_file = st.file_uploader(
"Choose a PDF file",
type=['pdf'],
help="PDF with text, images, and tables"
)
if uploaded_file is not None:
upload_path = Path(UPLOAD_FOLDER)
upload_path.mkdir(exist_ok=True)
file_path = upload_path / uploaded_file.name
with open(file_path, 'wb') as f:
f.write(uploaded_file.getbuffer())
st.success(f"β
File saved: {uploaded_file.name}")
if st.button("π Parse PDF"):
if not st.session_state.api_key_set:
st.error("β Please set OpenAI API key first")
else:
try:
with st.spinner("π Parsing PDF..."):
print(f"\n{'='*70}")
print(f"PARSING: {uploaded_file.name}")
print(f"{'='*70}")
# Parse PDF - returns text, images, tables
parser = st.session_state.parser
text, images, tables = parser.parse_pdf(str(file_path))
# Store in session state
st.session_state.current_document = uploaded_file.name
st.session_state.current_text = text
st.session_state.current_images = images
st.session_state.current_tables = tables
# Display results
col1, col2, col3 = st.columns(3)
with col1:
st.metric("π Text", f"{len(text):,} chars")
with col2:
st.metric("πΌοΈ Images", len(images))
with col3:
st.metric("π Tables", len(tables))
#if images:
# st.subheader("πΌοΈ Extracted Images")
# for idx, img in enumerate(images):
# ocr_text = img.get('ocr_text', '')
# ocr_len = len(ocr_text)
#
# if ocr_len > 0:
# st.success(f"β
Image {idx}: {ocr_len} characters (OCR)")
# else:
# st.warning(f"β οΈ Image {idx}: No OCR text (will use visual analysis)")
st.success("β
PDF parsing complete!")
except Exception as e:
st.error(f"β Error parsing PDF: {e}")
print(f"Error: {e}")
st.divider()
st.header("πΌοΈ Analysis & Storage")
if st.button("πΌοΈ Analyze & Store Components"):
if not st.session_state.api_key_set:
st.error("β Please set OpenAI API key first")
elif st.session_state.current_text is None:
st.error("β Please parse a PDF document first")
else:
try:
with st.spinner("πΌοΈ Analyzing..."):
print(f"\n{'='*70}")
print(f"VISUAL IMAGE ANALYSIS")
print(f"{'='*70}")
visual_rag = st.session_state.visual_rag_system
vector_store = st.session_state.vector_store
results = visual_rag.process_and_store_document(
text=st.session_state.current_text,
images=st.session_state.current_images,
tables=st.session_state.current_tables,
vector_store=vector_store,
doc_id=st.session_state.current_document or "current_doc"
)
st.session_state.processing_results = results
st.success("β
Visual analysis complete & stored!")
col1, col2, col3 = st.columns(3)
with col1:
st.metric("πΌοΈ Images Analyzed", len(results['image_visual_analyses']))
with col2:
st.metric("π Text Chunks", len(results['text_summaries']))
with col3:
st.metric("π Tables Analyzed", len(results['table_summaries']))
st.metric("π Total Stored in Vector", results['total_stored'])
#if results['image_visual_analyses']:
# st.subheader("πΌοΈ Visual Image Analyses (gpt-4o)")
# for img_analysis in results['image_visual_analyses']:
# with st.expander(f"Image {img_analysis['image_index']} - Visual Analysis"):
# st.write("**Visual Analysis by gpt-4o:**")
# st.write(img_analysis['visual_analysis'])
#
# st.write("**Image Path:**")
# st.code(img_analysis['image_path'])
#
# if img_analysis['ocr_text']:
# st.write("**OCR Text (backup):**")
# st.text(img_analysis['ocr_text'][:500])
#if results['text_summaries']:
# st.subheader("π Text Chunk Summaries")
# for chunk_summary in results['text_summaries']:
# with st.expander(
# f"Chunk {chunk_summary['chunk_index']} "
# f"({chunk_summary['chunk_length']} chars)"
# ):
# st.write("**Summary:**")
# st.write(chunk_summary['summary'])
# st.write("**Original Text (first 500 chars):**")
# st.text(chunk_summary['original_text'])
#if results['table_summaries']:
# st.subheader("π Table Analyses")
# for table_summary in results['table_summaries']:
# with st.expander(
# f"Table {table_summary['table_index']} "
# f"({table_summary['table_length']} chars)"
# ):
# st.write("**Analysis:**")
# st.write(table_summary['summary'])
# st.write("**Original Content (first 500 chars):**")
# st.text(table_summary['original_content'])
print(f"\nβ
Analysis processing complete!")
except Exception as e:
st.error(f"β Error during analysis: {e}")
print(f"Error: {e}")
st.divider()
st.header("β Ask Questions About Document")
if 'answering_rag' not in st.session_state:
st.session_state.answering_rag = None
if st.session_state.api_key_set and st.session_state.answering_rag is None:
from rag_system import AnsweringRAG
st.session_state.answering_rag = AnsweringRAG(api_key=st.session_state.api_key, debug=True)
question = st.text_area(
"Enter your question:",
height=100,
placeholder="What does the document say about...?"
)
if st.button("π Search & Generate Answer"):
if not st.session_state.api_key_set:
st.error("β Please set OpenAI API key first")
elif st.session_state.current_text is None:
st.error("β Please parse a PDF document first")
elif not question:
st.error("β Please enter a question")
else:
try:
with st.spinner("π Searching document and analyzing..."):
print(f"\n{'='*70}")
print(f"QUESTION: {question}")
print(f"{'='*70}")
store = st.session_state.vector_store
doc_name = st.session_state.current_document or "current_doc"
doc_data = {
'text': st.session_state.current_text,
'images': [],
'tables': []
}
store.add_documents(doc_data, doc_name)
search_results = store.search(question, n_results=5)
print(f"\nπ Search Results Found: {len(search_results)}")
answering_rag = st.session_state.answering_rag
result = answering_rag.analyze_and_answer(question, search_results)
st.success("β
Analysis complete!")
st.subheader("π Answer")
col1, col2, col3 = st.columns(3)
with col1:
st.metric("Confidence", f"{result['confidence'].upper()}")
with col2:
st.metric("Sources Used", result['sources_used'])
with col3:
if result['sources_used'] > 0:
st.metric("Avg Relevance", f"{sum(1-r.get('distance',0) for r in search_results)/len(search_results):.0%}")
st.write(result['answer'])
if st.checkbox("π Show Source Documents"):
st.subheader("Sources Used in Answer")
for idx, source in enumerate(result['formatted_sources'], 1):
relevance = source['relevance']
relevance_bar = "β" * int(relevance * 10) + "β" * (10 - int(relevance * 10))
with st.expander(
f"Source {idx} - {source['type'].upper()} "
f"[{relevance_bar}] {relevance:.0%}"
):
st.write(source['content'])
print(f"\nβ
Answer generation complete!")
except Exception as e:
st.error(f"β Error processing question: {e}")
print(f"Error: {e}")
st.divider() |