Spaces:
Sleeping
Sleeping
| """ | |
| Document Management System for PolicyWise RAG Application | |
| This module provides comprehensive document lifecycle management including: | |
| - Multi-file upload with drag-and-drop interface | |
| - Async document processing pipeline | |
| - Document organization and metadata management | |
| - Processing status monitoring and analytics | |
| - Integration with existing RAG pipeline and vector database | |
| Built using the app factory pattern with lazy loading for optimal memory usage. | |
| """ | |
| from .document_service import DocumentService | |
| from .processing_service import ProcessingService | |
| from .upload_service import UploadService | |
| __all__ = ["DocumentService", "ProcessingService", "UploadService"] | |