File size: 10,655 Bytes
21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 21f3961 d3aa2b9 |
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 |
import streamlit as st
import os
from pathlib import Path
from rag_pipeline import RAGPipeline
import time
# Page configuration
st.set_page_config(
page_title="Local Multimodal RAG",
page_icon="π",
layout="wide",
initial_sidebar_state="expanded"
)
st.title("π Local Multimodal RAG System")
st.markdown("**Analyze PDF documents locally with Mistral + CLIP embeddings**")
# Initialize session state
if "uploaded_files" not in st.session_state:
st.session_state.uploaded_files = []
if "rag_pipeline" not in st.session_state:
st.session_state.rag_pipeline = None
if "last_upload_time" not in st.session_state:
st.session_state.last_upload_time = 0
# Sidebar configuration
with st.sidebar:
st.header("βοΈ Configuration")
pdf_dir = st.text_input(
"π PDF Directory",
value="./pdfs",
help="Path to directory containing PDF files"
)
# Ensure directory exists
os.makedirs(pdf_dir, exist_ok=True)
device = st.selectbox(
"π₯οΈ Device",
["cpu", "cuda"],
help="Device for model inference"
)
n_context_docs = st.slider(
"π Context Documents",
min_value=1,
max_value=10,
value=3,
help="Number of documents to retrieve for context"
)
st.divider()
# PDF Upload Section with Form
st.subheader("π€ Upload PDF Files")
# Use a form to separate file upload from submission
with st.form("pdf_upload_form", clear_on_submit=True):
uploaded_pdfs = st.file_uploader(
"Choose PDF files to upload",
type="pdf",
accept_multiple_files=True,
help="Select one or more PDF files to add to the system"
)
submit_button = st.form_submit_button("β¬οΈ Upload PDFs", use_container_width=True)
if submit_button and uploaded_pdfs:
upload_successful = True
uploaded_count = 0
for uploaded_file in uploaded_pdfs:
try:
file_path = os.path.join(pdf_dir, uploaded_file.name)
# Save file to disk
with open(file_path, "wb") as f:
f.write(uploaded_file.getbuffer())
st.session_state.uploaded_files.append(uploaded_file.name)
uploaded_count += 1
except Exception as e:
st.error(f"Failed to upload {uploaded_file.name}: {str(e)}")
upload_successful = False
if upload_successful and uploaded_count > 0:
st.session_state.last_upload_time = time.time()
st.success(f"β
Uploaded {uploaded_count} PDF(s) successfully!")
st.info("π Click 'Reload & Index PDFs' below to process them.")
# Don't call st.rerun() here - let form handle clear_on_submit
st.divider()
# Display uploaded files
pdf_files = list(Path(pdf_dir).glob("*.pdf"))
if pdf_files:
st.subheader(f"π Documents ({len(pdf_files)})")
for pdf_file in pdf_files:
col1, col2 = st.columns([4, 1])
with col1:
st.write(f"β’ {pdf_file.name}")
with col2:
if st.button("ποΈ", key=f"delete_{pdf_file.name}", help="Delete this file"):
try:
os.remove(pdf_file)
st.session_state.rag_pipeline = None # Clear pipeline
st.success(f"Deleted {pdf_file.name}")
time.sleep(0.5)
st.rerun()
except Exception as e:
st.error(f"Failed to delete: {str(e)}")
else:
st.info("π No PDF files in directory yet")
st.divider()
# Reload/Index button
col1, col2 = st.columns(2)
with col1:
if st.button("π Reload & Index", use_container_width=True):
st.session_state.rag_pipeline = None # Clear cached pipeline
st.rerun()
with col2:
if st.button("ποΈ Clear All", use_container_width=True):
# Delete all PDFs
for pdf_file in Path(pdf_dir).glob("*.pdf"):
try:
os.remove(pdf_file)
except:
pass
st.session_state.rag_pipeline = None
st.session_state.uploaded_files = []
st.success("All PDFs cleared")
time.sleep(0.5)
st.rerun()
# Initialize pipeline
@st.cache_resource
def init_rag_pipeline(_device, _pdf_dir):
"""Initialize RAG pipeline (cached)"""
os.makedirs(_pdf_dir, exist_ok=True)
pdf_files = list(Path(_pdf_dir).glob("*.pdf"))
if not pdf_files:
return None, f"No PDF files found in {_pdf_dir}"
try:
with st.spinner("β³ Initializing models..."):
pipeline = RAGPipeline(pdf_dir=_pdf_dir, device=_device)
with st.spinner("β³ Indexing PDFs..."):
pipeline.index_pdfs()
return pipeline, None
except Exception as e:
return None, str(e)
# Get or initialize pipeline
if st.session_state.rag_pipeline is None:
pdf_files = list(Path(pdf_dir).glob("*.pdf"))
if pdf_files:
pipeline, error = init_rag_pipeline(device, pdf_dir)
if error:
st.error(f"β Error: {error}")
st.stop()
st.session_state.rag_pipeline = pipeline
else:
st.warning("π No PDF files found")
st.info("""
**How to get started:**
1. π€ Upload PDF files using the sidebar file uploader
2. β
Click 'Upload PDFs' to save them
3. π Click 'Reload & Index PDFs' to process
4. β Ask questions in the Q&A tab
""")
st.stop()
else:
pipeline = st.session_state.rag_pipeline
# Main content
if pipeline:
# Tabs
tab1, tab2, tab3 = st.tabs(["β Q&A", "π Summary", "π Retrieval"])
# Tab 1: Question Answering
with tab1:
st.subheader("Ask Questions about Your Documents")
question = st.text_area(
"Your question (in Russian or English):",
height=100,
placeholder="What is this document about? What are the main points? Etc.",
key="qa_question"
)
col1, col2 = st.columns(2)
with col1:
get_answer_btn = st.button("π Get Answer", use_container_width=True)
with col2:
clear_btn = st.button("ποΈ Clear", use_container_width=True)
if clear_btn:
st.rerun()
if get_answer_btn:
if question.strip():
with st.spinner("β³ Retrieving documents and generating answer..."):
try:
result = pipeline.answer_question(question, n_context_docs=n_context_docs)
except Exception as e:
st.error(f"Error: {str(e)}")
result = None
if result and result.get("answer"):
st.success("β Answer generated!")
st.subheader("π Answer")
st.write(result["answer"])
with st.expander("π Sources Used"):
for i, source in enumerate(result["sources"], 1):
st.write(f"{i}. {source}")
col1, col2 = st.columns(2)
with col1:
st.metric("Documents Used", result.get("context_used", 0))
with col2:
st.metric("Answer Length", len(result["answer"]))
else:
st.warning("Please enter a question")
# Tab 2: Document Summary
with tab2:
st.subheader("Summary of Indexed Documents")
if st.button("π Generate Summary", use_container_width=True):
with st.spinner("β³ Generating summary..."):
try:
summary = pipeline.summarize_documents()
st.success("β Summary generated!")
st.subheader("π Document Summary")
st.write(summary)
except Exception as e:
st.error(f"Error: {str(e)}")
# Tab 3: Document Retrieval
with tab3:
st.subheader("Search and Retrieve Documents")
search_query = st.text_input(
"Search query:",
placeholder="Enter search terms...",
key="retrieval_search"
)
col1, col2 = st.columns(2)
with col1:
search_btn = st.button("π Search", use_container_width=True)
with col2:
clear_search_btn = st.button("Clear Search", use_container_width=True)
if clear_search_btn:
st.rerun()
if search_btn:
if search_query.strip():
with st.spinner("β³ Searching..."):
try:
results = pipeline.retrieve_documents(search_query, n_results=n_context_docs)
except Exception as e:
st.error(f"Search error: {str(e)}")
results = []
if results:
st.success(f"β Found {len(results)} documents")
for i, doc in enumerate(results, 1):
with st.expander(f"π Document {i} - {doc['source']}", expanded=(i==1)):
st.write(doc["content"])
else:
st.warning("No documents found matching your query")
else:
st.warning("Please enter a search query")
# Footer
st.divider()
with st.expander("βΉοΈ System Information"):
info = pipeline.vector_store.get_collection_info()
col1, col2, col3, col4 = st.columns(4)
with col1:
st.metric("π Chunks", info.get("document_count", 0))
with col2:
st.metric("π₯οΈ Device", device.upper())
with col3:
st.metric("π Context", n_context_docs)
with col4:
pdf_count = len(list(Path(pdf_dir).glob("*.pdf")))
st.metric("π PDFs", pdf_count) |