Spaces:
Sleeping
Sleeping
File size: 11,843 Bytes
40e5eae | 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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 | # Architecture Documentation
## System Overview
This RAG system implements a two-phase architecture:
1. **Indexing Phase**: Process documents into searchable vectors (one-time or periodic)
2. **Query Phase**: Retrieve relevant context and generate answers (per-request)
## Core Components
### 1. Document Converter (`document_converter.py`)
**Responsibility**: Transform various document formats into plain text.
**Supported Formats**:
- PDF β PyMuPDF (fitz)
- DOCX β python-docx
- TXT β direct read
**Process**:
```
Input: documents/*.{pdf,docx,txt}
β
Extract text with formatting preservation
β
Output: processed_docs/*.md
```
**Key Functions**:
- `convert_pdf_to_markdown()`: Extracts text page-by-page
- `convert_docx_to_markdown()`: Preserves paragraph structure
- `convert_all_documents()`: Batch processing
**Limitations**:
- Images are ignored
- Tables may lose structure
- Complex layouts flatten to linear text
---
### 2. Text Splitter (`text_splitter.py`)
**Responsibility**: Divide documents into semantic chunks with overlap.
**Strategy**: LangChain's `RecursiveCharacterTextSplitter`
**Parameters**:
- `chunk_size`: 1000 characters (configurable)
- `chunk_overlap`: 200 characters (preserves context across boundaries)
- `separators`: `["\n\n", "\n", ". ", " ", ""]` (hierarchical splitting)
**Process**:
```
Input: processed_docs/*.md
β
Split on paragraph boundaries first
β
If chunk > 1000 chars, split on sentences
β
If still too large, split on words
β
Output: List[Document] with metadata
```
**Metadata Attached**:
- Source file path
- Chunk index
- Original document title
**Why Overlap Matters**:
- Prevents context loss at chunk boundaries
- Improves retrieval for queries spanning multiple chunks
---
### 3. Vector Store (`vector_store.py`)
**Responsibility**: Store embeddings and perform similarity search.
**Technology**: ChromaDB (persistent, local-first vector database)
**Embedding Model**: `all-MiniLM-L6-v2` (sentence-transformers)
- Dimensions: 384
- Speed: ~1000 sentences/sec on CPU
- Language: Primarily English (degraded performance on other languages)
**Process**:
```
Input: List[Document] chunks
β
Generate embeddings via SentenceTransformer
β
Store in ChromaDB collection with metadata
β
Index: HNSW (Hierarchical Navigable Small World)
```
**Query Flow**:
```
User question (text)
β
Generate query embedding
β
Cosine similarity search in ChromaDB
β
Return top-k chunks (default: 5)
```
**Key Methods**:
- `add_documents()`: Batch insert with embeddings
- `retrieve_context()`: Similarity search
- `get_collection_stats()`: Metadata and count
**Distance Metric**: Cosine similarity (default)
---
### 4. LLM Handler (`llm_handler.py`)
**Responsibility**: Generate answers using local LLM via Ollama.
**Model**: `llama3.2` (default, 3B parameters)
**Process**:
```
Input: Question + Retrieved context
β
Format prompt template
β
Send to Ollama API (localhost:11434)
β
Stream response tokens
β
Output: Generated answer
```
**Prompt Template**:
```
You are a helpful assistant. Answer the question based on the context provided.
Context: {retrieved_chunks}
Question: {user_question}
Answer:
```
**Streaming vs Synchronous**:
- **Streaming** (`stream_llm_answer()`): Yields tokens as generated (better UX)
- **Synchronous** (`generate_answer()`): Returns complete answer (simpler API)
**Error Handling**:
- Model availability check before inference
- Timeout after 60 seconds
- Fallback to error message if Ollama unreachable
---
### 5. Main Application (`main.py`)
**Responsibility**: Orchestrate pipeline and launch web interface.
**Initialization Sequence**:
```
1. Load configuration
2. Download test document (if first run)
3. Convert documents to markdown
4. Split into chunks
5. Initialize vector store
6. Check if documents already indexed
7. If not, add embeddings to ChromaDB
8. Verify Ollama model availability
9. Launch Gradio interface
```
**RAGSystem Class**:
- `setup_pipeline()`: Runs indexing phase
- `query()`: Handles user questions (retrieval + generation)
**Gradio Interface**:
- Input: Text box for questions
- Output: Markdown with answer + sources
- Examples: Pre-defined questions
- Theme: Gradio default (configurable)
---
## Data Flow
### Indexing Phase (One-Time)
```
βββββββββββββββ
β Documents β
ββββββββ¬βββββββ
β
βΌ
βββββββββββββββββββββββ
β Document Converter β β PyMuPDF, python-docx
ββββββββ¬βββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β Text Splitter β β LangChain
ββββββββ¬βββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β Embedding Generator β β sentence-transformers
ββββββββ¬βββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β ChromaDB β β Persistent storage
βββββββββββββββββββββββ
```
**Time Complexity**: O(n) where n = number of chunks (~30 seconds for 847 chunks)
---
### Query Phase (Per-Request)
```
ββββββββββββββββ
β User Questionβ
ββββββββ¬ββββββββ
β
βΌ
βββββββββββββββββββββββ
β Embedding Generator β β Same model as indexing
ββββββββ¬βββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β ChromaDB Search β β Cosine similarity
ββββββββ¬βββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β Top-k Chunks β β Default: 5 chunks
ββββββββ¬βββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β Prompt Formatter β β Inject context
ββββββββ¬βββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β Ollama (LLM) β β llama3.2 inference
ββββββββ¬βββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β Answer + Sources β
βββββββββββββββββββββββ
```
**Time Complexity**:
- Embedding: ~50ms
- Search: ~100ms
- LLM inference: 5-15 seconds (depends on answer length)
---
## Configuration Management
**File**: `config.py`
**Key Parameters**:
```python
# Paths
DOCUMENTS_DIR = "./documents"
CHROMA_DB_DIR = "./chroma_db"
# Models
EMBEDDING_MODEL_NAME = "all-MiniLM-L6-v2"
OLLAMA_MODEL_NAME = "llama3.2"
# Chunking
CHUNK_SIZE = 1000
CHUNK_OVERLAP = 200
# Retrieval
DEFAULT_N_RESULTS = 5
# LLM
LLM_TEMPERATURE = 0.7
```
**Environment Variables** (`.env`):
- Override config.py values
- Useful for deployment-specific settings
- Not committed to Git
---
## Synchronous vs Asynchronous
**Current Implementation**: Synchronous
- Document processing: Sequential
- Embedding generation: Batch (but blocking)
- LLM inference: Streaming (but single-threaded)
**Implications**:
- Only one query processed at a time
- Gradio queues requests automatically
- No concurrent document indexing
**Future Improvement**:
- Use `asyncio` for concurrent queries
- Background task for document re-indexing
- WebSocket for real-time streaming
---
## Memory Management
**RAM Usage Breakdown**:
- Embedding model: ~500MB
- ChromaDB index: ~100MB per 1000 chunks
- Ollama model: ~2-4GB (depends on model size)
- Python overhead: ~200MB
**Total**: 4-6GB minimum
**Optimization Strategies**:
- Lazy load embedding model (only when needed)
- Use quantized Ollama models (Q4, Q5)
- Limit ChromaDB collection size (delete old documents)
---
## Error Handling
**Graceful Degradation**:
1. If Ollama unavailable β Show error message (don't crash)
2. If document conversion fails β Skip file, log error
3. If embedding generation fails β Retry once, then skip
4. If ChromaDB locked β Wait and retry (up to 3 times)
**Logging**:
- All components use Python `logging` module
- Levels: INFO (default), DEBUG (verbose), ERROR (critical)
- Output: Console (can redirect to file)
---
## Testing Strategy
**Unit Tests** (not implemented):
- `test_document_converter.py`: Verify PDF/DOCX parsing
- `test_text_splitter.py`: Check chunk sizes and overlap
- `test_vector_store.py`: Validate embedding dimensions
- `test_llm_handler.py`: Mock Ollama responses
**Integration Tests** (manual):
- Run `python main.py` and verify startup
- Query known document and check answer accuracy
- Test with non-English queries
**Performance Tests**:
- Measure indexing time for various document sizes
- Benchmark query latency under load
---
## Scalability Considerations
**Current Limitations**:
- Single-machine deployment
- No horizontal scaling
- In-memory embeddings (ChromaDB limitation)
**Scaling Strategies**:
1. **Vertical Scaling**: Add more RAM/CPU
2. **Model Optimization**: Use smaller/quantized models
3. **Caching**: Store frequent query results
4. **Distributed ChromaDB**: Use client-server mode
5. **Load Balancing**: Multiple Ollama instances behind nginx
**When to Scale**:
- \>10,000 documents
- \>100 concurrent users
- \>1M chunks in vector store
---
## Security Architecture
**Current State**: No authentication or authorization
**Threat Model**:
- Malicious document upload (XSS, code injection)
- Prompt injection attacks
- Resource exhaustion (DoS)
- Data exfiltration via queries
**Mitigation Strategies** (not implemented):
- Sandboxed document processing
- Input sanitization
- Rate limiting per IP
- Query result filtering
**See**: `LIMITATIONS.md` for production readiness gaps
---
## Alternative Architectures
### Option 1: API-First Design
Replace Gradio with FastAPI:
```
Frontend (Vue.js) β REST API (FastAPI) β RAG Backend
```
**Benefits**:
- Decoupled UI/backend
- Mobile app support
- Better caching
### Option 2: Serverless
Use AWS Lambda + S3 + Pinecone:
```
S3 (docs) β Lambda (indexing) β Pinecone (vectors)
API Gateway β Lambda (query) β OpenAI API
```
**Benefits**:
- Auto-scaling
- Pay-per-use
- No server management
**Drawbacks**:
- Higher latency
- Vendor lock-in
- Cost at scale
---
## Performance Benchmarks
**Test Document**: Think Python (300 pages, 847 chunks)
| Operation | Time | Notes |
|-----------|------|-------|
| PDF Conversion | 5s | PyMuPDF |
| Text Splitting | 2s | LangChain |
| Embedding Generation | 20s | CPU, batch=32 |
| ChromaDB Indexing | 3s | Disk write |
| Query Embedding | 50ms | Single query |
| Vector Search | 100ms | 847 chunks |
| LLM Inference | 8s | llama3.2, ~100 tokens |
| **Total Query Time** | **~8-10s** | End-to-end |
**Hardware**: M1 MacBook Pro, 16GB RAM
---
## Future Architecture Improvements
1. **Hybrid Search**: Combine vector search with keyword search (BM25)
2. **Re-ranking**: Use cross-encoder to re-rank top-k results
3. **Multi-hop Reasoning**: Chain multiple queries for complex questions
4. **Document Metadata**: Filter by date, author, document type
5. **Conversation Memory**: Track dialogue context across queries
---
**Status**: Current architecture suitable for prototyping and small-scale deployments (<1000 documents, <10 concurrent users).
|