Spaces:
Sleeping
Sleeping
File size: 8,157 Bytes
f84a02d | 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 | # PDF Processing Module for ATOM
A comprehensive PDF processing system with OCR capabilities, image comprehension, and memory storage integration for the ATOM platform.
## Overview
This module provides advanced PDF processing capabilities for ATOM, including:
- **Text Extraction**: Extract text from searchable PDFs using PyPDF2
- **OCR Processing**: Optical Character Recognition for scanned PDFs and images
- **Image Comprehension**: AI-powered understanding of visual content using OpenAI Vision
- **Memory Integration**: Store processed content in LanceDB for semantic search
- **Fallback Strategies**: Graceful degradation when external services are unavailable
## Features
### Core Processing
- **Multi-format Support**: Process PDFs from files, URLs, or byte streams
- **Smart PDF Detection**: Automatically detect searchable vs scanned PDFs
- **OCR with Fallback**: Cascade through multiple OCR engines (Tesseract, EasyOCR, OpenAI)
- **Image Extraction**: Extract and process embedded images
- **Batch Processing**: Support for processing multiple PDFs efficiently
### Memory Storage
- **Vector Embeddings**: Generate embeddings for semantic search
- **Metadata Management**: Store comprehensive document metadata
- **Semantic Search**: Find documents based on content similarity
- **Document Statistics**: Track usage and storage metrics
- **Tag-based Organization**: Categorize documents with custom tags
### Integration Features
- **RESTful API**: Complete API for integration with other services
- **Health Monitoring**: Service status and capability reporting
- **Error Handling**: Robust error handling with detailed feedback
- **Configuration**: Flexible configuration for different environments
## Installation
### System Dependencies
**Ubuntu/Debian:**
```bash
sudo apt-get update
sudo apt-get install tesseract-ocr poppler-utils
```
**macOS:**
```bash
brew install tesseract poppler
```
**Windows:**
- Download Tesseract from [GitHub releases](https://github.com/UB-Mannheim/tesseract/wiki)
- Download Poppler from [poppler-windows releases](https://github.com/oschwartz10612/poppler-windows/releases/)
### Python Dependencies
Add the following to your `requirements.txt`:
```txt
# PDF Processing
PyPDF2>=3.0.0,<4.0.0
pdf2image>=1.16.3,<2.0.0
pillow>=10.0.0,<11.0.0
# OCR Libraries
pytesseract>=0.3.10,<1.0.0
easyocr>=1.7.0,<2.0.0
# AI Vision (Optional)
openai>=1.0.0,<2.0.0
# Image Processing
numpy>=1.24.0,<2.0.0
opencv-python>=4.8.0,<5.0.0
```
## Configuration
### Environment Variables
```bash
# OpenAI API Key (for advanced image comprehension)
OPENAI_API_KEY=your_openai_api_key_here
# Tesseract Path (if not in PATH)
TESSERACT_PATH=/usr/bin/tesseract
# OCR Languages (comma-separated)
OCR_LANGUAGES=en,es,fr,de
# LanceDB Configuration
LANCEDB_URI=./data/lancedb
```
### Service Initialization
```python
from atom.backend.integrations.pdf_processing import PDFOCRService, PDFMemoryIntegration
# Initialize OCR Service
pdf_service = PDFOCRService(
openai_api_key=os.getenv('OPENAI_API_KEY'),
tesseract_path=os.getenv('TESSERACT_PATH'),
easyocr_languages=['en', 'es'] # Default: ['en']
)
# Initialize Memory Integration
memory_service = PDFMemoryIntegration(lancedb_handler=your_lancedb_handler)
```
## API Endpoints
### PDF Processing Endpoints
#### `POST /pdf/process`
Process a PDF file with optional OCR and image comprehension.
**Parameters:**
- `file`: PDF file upload (required)
- `use_ocr`: Use OCR for scanned PDFs (default: true)
- `extract_images`: Extract and process images (default: true)
- `use_advanced_comprehension`: Use AI for image understanding (default: false)
- `fallback_strategy`: "cascade" or "parallel" (default: "cascade")
**Response:**
```json
{
"processing_summary": {
"used_ocr": true,
"ocr_methods_tried": ["tesseract", "easyocr"],
"best_method": "tesseract",
"total_pages": 10,
"total_characters": 2500
},
"extracted_content": {
"text": "Extracted text content...",
"page_breakdown": [...],
"images": {...}
},
"service_status": {...}
}
```
#### `POST /pdf/process-url`
Process a PDF from a URL.
#### `POST /pdf/extract-text-only`
Fast text extraction without OCR.
#### `POST /pdf/analyze-pdf-type`
Analyze PDF type without full processing.
### Memory Integration Endpoints
#### `POST /pdf-memory/store`
Store processed PDF in memory system.
#### `GET /pdf-memory/search`
Search PDF documents using semantic search.
#### `GET /pdf-memory/documents/{doc_id}`
Retrieve a specific document.
#### `DELETE /pdf-memory/documents/{doc_id}`
Delete a document from memory.
#### `GET /pdf-memory/users/{user_id}/stats`
Get document statistics for a user.
## Usage Examples
### Basic PDF Processing
```python
from atom.backend.integrations.pdf_processing import PDFOCRService
# Initialize service
service = PDFOCRService()
# Process a PDF file
with open('document.pdf', 'rb') as f:
result = await service.process_pdf(
pdf_data=f.read(),
use_ocr=True,
extract_images=True
)
print(f"Extracted {result['processing_summary']['total_characters']} characters")
print(f"Used method: {result['processing_summary']['best_method']}")
```
### Memory Integration
```python
from atom.backend.integrations.pdf_processing import PDFMemoryIntegration
# Initialize memory service
memory_service = PDFMemoryIntegration(lancedb_handler=lancedb_handler)
# Store processed PDF
storage_result = await memory_service.store_processed_pdf(
user_id="user_123",
processing_result=processing_result,
source_uri="file:///documents/report.pdf",
tags=["report", "quarterly", "finance"]
)
# Search documents
search_results = await memory_service.search_pdfs(
user_id="user_123",
query="quarterly financial report",
limit=10,
similarity_threshold=0.7
)
```
### Complete Workflow
```python
async def process_and_store_pdf(user_id: str, file_path: str):
# Process PDF
with open(file_path, 'rb') as f:
processing_result = await pdf_service.process_pdf(f.read())
# Store in memory
storage_result = await memory_service.store_processed_pdf(
user_id=user_id,
processing_result=processing_result,
source_uri=f"file://{file_path}"
)
return storage_result
```
## Fallback Strategies
The system implements intelligent fallback mechanisms:
1. **Cascade Strategy**: Try methods in order of preference
- OpenAI Vision (if available and requested)
- EasyOCR
- Tesseract
- Basic PyPDF2 extraction
2. **Parallel Strategy**: Try all methods and pick the best result
3. **Service Availability**: Automatically detect available OCR engines
## Error Handling
The module provides comprehensive error handling:
- **File Validation**: Validate PDF files before processing
- **Service Availability**: Check OCR engine availability
- **API Rate Limits**: Handle external API limitations
- **Memory Constraints**: Manage large document processing
- **Network Issues**: Handle connectivity problems gracefully
## Performance Considerations
- **Large Documents**: Process documents in chunks for memory efficiency
- **Batch Processing**: Use batch endpoints for multiple documents
- **Caching**: Implement caching for frequently accessed documents
- **Background Processing**: Use async processing for better performance
## Testing
Run the test suite:
```bash
cd atom/backend/integrations/pdf_processing
python -m pytest tests/ -v
```
## Contributing
1. Fork the repository
2. Create a feature branch
3. Add tests for new functionality
4. Ensure all tests pass
5. Submit a pull request
## License
This module is part of the ATOM platform and follows the same licensing terms.
## Support
For issues and questions:
- Create an issue in the ATOM repository
- Check the documentation
- Contact the development team |